Compare commits

..

2 Commits

Author SHA1 Message Date
4e446adefc new version system 2022-11-02 22:57:15 +03:00
e5fa39bdad add win platform to fake gmod 2022-11-02 22:56:44 +03:00
2 changed files with 10 additions and 6 deletions

View File

@ -1,10 +1,13 @@
package gameUtils package gameUtils
var garrysmodGame = SteamGame{ var garrysmodGame = SteamGame{
GameId: "garrysmod", GameId: "garrysmod",
SteamId: "4000", SteamId: "4000",
Args: []string{}, Args: []string{},
Platforms: map[string]bool{"linux": true}, Platforms: map[string]bool{
"linux": true,
"windows": true,
},
Assets: GameInterfaceAssets{ Assets: GameInterfaceAssets{
Title: "Garry's Mod", Title: "Garry's Mod",
Icon: "icon.png", Icon: "icon.png",

View File

@ -1,6 +1,7 @@
package updateutils package updateutils
type LastVersion struct { //Rename to Version type LastVersion struct { //Rename to Version
Major int Epic int
Minor int Sprint int
Build int
} }