Skip to content

Commit

Permalink
Merge pull request #864 from xPaw/ELauncherType
Browse files Browse the repository at this point in the history
Add ELauncherType
  • Loading branch information
yaakov-h authored Jun 19, 2020
2 parents da3cb45 + dc90493 commit f610646
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Resources/SteamLanguage/enums.steamd
Original file line number Diff line number Diff line change
Expand Up @@ -1540,3 +1540,16 @@ public enum ESteamRealm
SteamGlobal = 1;
SteamChina = 2;
};

enum ELauncherType
{
Default = 0;
PerfectWorld = 1;
Nexon = 2;
CmdLine = 3;
CSGO = 4;
ClientUI = 5;
Headless = 6;
SteamChina = 7;
SingleApp = 8;
}
12 changes: 12 additions & 0 deletions SteamKit2/SteamKit2/Base/Generated/SteamLanguage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3256,6 +3256,18 @@ public enum ESteamRealm
SteamGlobal = 1,
SteamChina = 2,
}
public enum ELauncherType
{
Default = 0,
PerfectWorld = 1,
Nexon = 2,
CmdLine = 3,
CSGO = 4,
ClientUI = 5,
Headless = 6,
SteamChina = 7,
SingleApp = 8,
}
public enum EUdpPacketType : byte
{
Invalid = 0,
Expand Down

0 comments on commit f610646

Please sign in to comment.