Add backgorunds to games

This commit is contained in:
cyber-dream 2022-11-07 15:06:45 +03:00
parent 1a0f0b9f17
commit 15e727c6c3

View File

@ -13,6 +13,11 @@ type GameInterfaceAssets struct {
Title string Title string
Icon string Icon string
Description string Description string
Backgrounds []GameInterfaceBackground
}
type GameInterfaceBackground struct {
File string
} }
type Games struct { type Games struct {
@ -27,6 +32,6 @@ type JSGameInterface struct {
} }
type Argument struct { type Argument struct {
Body string `json:"body"` Body string
Value string `json:"value"` Value string
} }