sharedutils/gameUtils/fakeGames.go

40 lines
834 B
Go
Raw Normal View History

2022-10-27 20:31:59 +00:00
package gameUtils
2022-10-26 18:43:21 +00:00
var garrysmodGame = SteamGame{
GameId: "garrysmod",
SteamId: "4000",
Args: []string{},
Platforms: map[string]bool{"linux": true},
Assets: GameInterfaceAssets{
Title: "Garry's Mod",
2022-10-28 15:23:04 +00:00
Icon: "icon.png",
2022-10-26 18:43:21 +00:00
Description: "",
},
}
var openarena = SteamGame{
GameId: "openarena",
SteamId: "",
//Executable: "/usr/games/openarena",
Args: []string{},
Assets: GameInterfaceAssets{
Title: "Open Arena",
2022-10-28 15:55:39 +00:00
Icon: "icon.png",
2022-10-26 18:43:21 +00:00
Description: "asdadasd",
},
}
2022-10-28 15:55:39 +00:00
var minecraft = SteamGame{
GameId: "minecraft",
SteamId: "",
Args: []string{},
Assets: GameInterfaceAssets{
Title: "Minecraft",
Icon: "icon.png",
Description: "Minecraft Game",
},
Platforms: map[string]bool{},
}
var SteamFakeGamesList = []SteamGame{garrysmodGame, openarena, minecraft}