33 lines
607 B
Go
33 lines
607 B
Go
package gameUtils
|
|
|
|
type SteamGame struct {
|
|
GameId string
|
|
SteamId string
|
|
Args []Argument
|
|
OptionalArgs []Argument
|
|
Assets GameInterfaceAssets
|
|
Platforms map[string]bool
|
|
}
|
|
|
|
type GameInterfaceAssets struct {
|
|
Title string
|
|
Icon string
|
|
Description string
|
|
}
|
|
|
|
type Games struct {
|
|
SteamGames []SteamGame
|
|
}
|
|
|
|
type JSGameInterface struct {
|
|
GameID string `json:"gameId"`
|
|
Title string `json:"title"`
|
|
Icon string `json:"icon"`
|
|
Description string `json:"description"`
|
|
}
|
|
|
|
type Argument struct {
|
|
Body string `json:"body"`
|
|
Value string `json:"value"`
|
|
}
|