mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
73b9f69adf
* Reenabled medical markers * Re enabled all markers (except civ and quantity) * Update CfgMarkers.hpp
14 lines
328 B
C++
14 lines
328 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;};
|
|
};
|