mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
14 lines
324 B
C++
14 lines
324 B
C++
// MARKERS
|
|
class CfgMarkers {
|
|
class Flag;
|
|
|
|
// Reenable NATO symbols ...
|
|
class b_unknown: Flag {scope = 2;};
|
|
|
|
// disable all civy markers (harbor etc.)
|
|
class c_unknown: b_unknown {scope = 1;};
|
|
|
|
// disable quantity indicators (fire team/squad/platoon ...)
|
|
class group_0: b_unknown {scope = 1;};
|
|
};
|