Added Game Mode Types

This commit is contained in:
Jacob Schmidt 2025-01-04 19:48:09 -06:00
parent 028227a590
commit a9403504d1

View File

@ -1,5 +1,12 @@
class CfgMPGameTypes { class CfgMPGameTypes {
class COOP; class COOP;
class FORGE_CAMP: COOP {
id = 433;
name = "Campaign";
picture = "";
shortcut = "CAMP";
description = "FORGE Campaign";
};
class FORGE_CNT: COOP { class FORGE_CNT: COOP {
id = 433; id = 433;
name = "Contract"; name = "Contract";
@ -21,4 +28,18 @@ class CfgMPGameTypes {
shortcut = "OP"; shortcut = "OP";
description = "FORGE Operation"; 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";
};
}; };