24 lines
553 B
C++
24 lines
553 B
C++
class CfgMPGameTypes {
|
|
class COOP;
|
|
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";
|
|
};
|
|
}; |