Compare commits

...

2 Commits

Author SHA1 Message Date
Jacob Schmidt
fbbfc031dc Merge branch 'master' of https://gitea.innovativedevsolutions.org/IDSolutions/server
All checks were successful
Build / Build (push) Successful in 52s
2025-01-04 19:48:14 -06:00
Jacob Schmidt
a9403504d1 Added Game Mode Types 2025-01-04 19:48:09 -06:00

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";
};
};