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
var garrysmodGame = SteamGame{
GameId: "garrysmod",
SteamId: "4000",
Args: []string{},
Platforms: map[string]bool{"linux": true},
GameId: "garrysmod",
SteamId: "4000",
Args: []string{},
Platforms: map[string]bool{
"linux": true,
"windows": true,
},
Assets: GameInterfaceAssets{
Title: "Garry's Mod",
Icon: "icon.png",

View File

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