client/addons/main/CfgMPGameTypes.hpp
Jacob Schmidt 0f3e76a212
All checks were successful
Build / Build (push) Successful in 54s
Added Game Mode Types
2025-01-04 19:46:30 -06:00

45 lines
1.0 KiB
C++

class CfgMPGameTypes {
class COOP;
class FORGE_CAMP: COOP {
id = 433;
name = "Campaign";
picture = "";
shortcut = "CAMP";
description = "FORGE Campaign";
};
class FORGE_CNT: COOP {
id = 433;
name = "Contract";
picture = "";
shortcut = "CNT";
description = "FORGE Contract";
};
class FORGE_DA: COOP {
id = 433;
name = "Direct Action";
picture = "";
shortcut = "DA";
description = "FORGE Direct Action";
};
class FORGE_OP: COOP {
id = 433;
name = "Operation";
picture = "";
shortcut = "OP";
description = "FORGE Operation";
};
class FORGE_SPC: COOP {
id = 433;
name = "Special";
picture = "";
shortcut = "SPC";
description = "FORGE Special";
};
class FORGE_TRN: COOP {
id = 433;
name = "Training";
picture = "";
shortcut = "TRN";
description = "FORGE Training";
};
};