Compare commits

..

No commits in common. "4e446adefc75b3784733b234ba9ae7a1fa4d8f21" and "0ae1cb8e0de85d50655d74cf27e45205bf62e3a4" have entirely different histories.

2 changed files with 6 additions and 10 deletions

View File

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

View File

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