Compare commits

..

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

2 changed files with 6 additions and 10 deletions

View File

@ -4,10 +4,7 @@ var garrysmodGame = SteamGame{
GameId: "garrysmod", GameId: "garrysmod",
SteamId: "4000", SteamId: "4000",
Args: []string{}, Args: []string{},
Platforms: map[string]bool{ Platforms: map[string]bool{"linux": true},
"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,7 +1,6 @@
package updateutils package updateutils
type LastVersion struct { //Rename to Version type LastVersion struct { //Rename to Version
Epic int Major int
Sprint int Minor int
Build int
} }