mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
* create iw7-mod parser * iw7 default settings & enum stuff * add zm maps to defaultsettings
32 lines
560 B
C#
32 lines
560 B
C#
namespace Data.Models
|
|
{
|
|
public class Reference
|
|
{
|
|
public enum Game
|
|
{
|
|
COD = -1,
|
|
UKN = 0,
|
|
IW3 = 1,
|
|
IW4 = 2,
|
|
IW5 = 3,
|
|
IW6 = 4,
|
|
T4 = 5,
|
|
T5 = 6,
|
|
T6 = 7,
|
|
T7 = 8,
|
|
SHG1 = 9,
|
|
CSGO = 10,
|
|
H1 = 11,
|
|
L4D2 = 12,
|
|
H2M = 13,
|
|
IW7 = 14
|
|
}
|
|
|
|
public enum ConnectionType
|
|
{
|
|
Connect,
|
|
Disconnect
|
|
}
|
|
}
|
|
}
|