Added Game Mode Types
All checks were successful
Build / Build (push) Successful in 54s

This commit is contained in:
Jacob Schmidt 2025-01-04 19:46:30 -06:00
parent 0e7574df18
commit 0f3e76a212

View File

@ -1,5 +1,12 @@
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";
@ -21,4 +28,18 @@ class CfgMPGameTypes {
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";
};
};