Skip to content

Commit

Permalink
Specify enum values for Platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
js6pak committed Apr 9, 2021
1 parent bfba438 commit 7764987
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/Impostor.Api/Innersloth/Platforms.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ namespace Impostor.Api.Innersloth
{
public enum Platforms
{
Unknown,
StandaloneEpicPC,
StandaloneSteamPC,
StandaloneMac,
StandaloneWin10,
StandaloneItch,
IPhone,
Android,
Switch,
Unknown = 0,
StandaloneEpicPC = 1,
StandaloneSteamPC = 2,
StandaloneMac = 3,
StandaloneWin10 = 4,
StandaloneItch = 5,
IPhone = 6,
Android = 7,
Switch = 8,
}
}

0 comments on commit 7764987

Please sign in to comment.