Skip to content

Commit

Permalink
Fix missing static weapon XEH and fix UBC
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdatiger committed Jan 30, 2025
1 parent 62c2756 commit 0132d1b
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions addons/xeh/xeh_csla/CfgVehicles.hpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#define XEH_ENABLED_INHERIT class EventHandlers: EventHandlers {class XEH_CLASS: XEH_CLASS_BASE {};}; SLX_XEH_DISABLED = 0
class CfgVehicles {
class StaticATWeapon;
class CSLA_9K113_Stat: StaticATWeapon {
Expand All @@ -16,21 +17,47 @@ class CfgVehicles {

class Plane_Base_F;
class CSLA_Plane_base_F: Plane_Base_F {};
class CSLA_CIV_Plane_base_F: CSLA_Plane_base_F {};
class CSLA_CIV_Plane_base_F: CSLA_Plane_base_F {
class EventHandlers;
};
class CSLA_CIV_Plane_base: CSLA_CIV_Plane_base_F {
XEH_ENABLED;
XEH_ENABLED_INHERIT;
};

class StaticMGWeapon;
class CSLA_UK59L_Stat: StaticMGWeapon {
XEH_ENABLED;
};

class CSLA_UK59T_Stat: StaticMGWeapon {
XEH_ENABLED;
};

class CSLA_DShKM_h_Stat: StaticMGWeapon {
XEH_ENABLED;
};

class CSLA_AGS17_Stat: StaticMGWeapon {
XEH_ENABLED;
};

class US85_M60_Stat: StaticMGWeapon {
XEH_ENABLED;
};

class US85_M2l: StaticMGWeapon {
XEH_ENABLED;
};

class US85_Mk19_stat: StaticMGWeapon {
XEH_ENABLED;
};

class US85_M252_Stat: Mortar_01_base_F {
XEH_ENABLED;
};

class HelicopterWreck;
class CSLA_Mi24_wreck: HelicopterWreck {
XEH_ENABLED;
};
};

0 comments on commit 0132d1b

Please sign in to comment.