20 lines
304 B
Go
20 lines
304 B
Go
|
package gamestypes
|
||
|
|
||
|
type SteamGame struct {
|
||
|
GameId string
|
||
|
SteamId string
|
||
|
Args []string
|
||
|
Assets GameInterfaceAssets
|
||
|
Platforms map[string]bool
|
||
|
}
|
||
|
|
||
|
type GameInterfaceAssets struct {
|
||
|
Title string
|
||
|
Image string
|
||
|
Description string
|
||
|
}
|
||
|
|
||
|
type Games struct {
|
||
|
SteamGames []SteamGame
|
||
|
}
|