mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
573 B
C++
32 lines
573 B
C++
class RscPicture;
|
|
class RscText;
|
|
class RscControlsGroupNoScrollbars;
|
|
/* This disables air radar. We need to make this a seperate HUD addon
|
|
class RscInGameUI
|
|
{
|
|
class RscUnitInfo
|
|
{
|
|
class CA_Radar: RscControlsGroupNoScrollbars
|
|
{
|
|
class controls
|
|
{
|
|
class CA_RadarBackground: RscPicture {
|
|
colorText[] = {0,0,0,0};
|
|
text = "";
|
|
};
|
|
class CA_RadarIcon: RscPicture {
|
|
colorText[] = {0,0,0,0};
|
|
};
|
|
class CA_Heading: RscText {
|
|
colorText[] = {0,0,0,0};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
class CfgInGameUI
|
|
{
|
|
|
|
};
|
|
|
|
*/ |