Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add XEH to missing classes (modules) #708

Merged
merged 1 commit into from
Jun 23, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions addons/xeh/CfgVehicles.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ class CfgVehicles {
XEH_DISABLED;
};

class Module_F;
class Logic;
class Module_F: Logic {
XEH_ENABLED
};
class BIS_Effect_FilmGrain: Module_F {
XEH_ENABLED;
};
Expand Down Expand Up @@ -83,7 +86,6 @@ class CfgVehicles {
XEH_ENABLED;
};

class Logic;
class LogicSectorBase_F: Logic {
XEH_ENABLED;
};
Expand Down Expand Up @@ -353,4 +355,10 @@ class CfgVehicles {
class Land_PowerLine_01_pole_transformer_F: PowerLines_Small_base_F {
XEH_ENABLED;
};

// ARGO
class Land_Laptop_02_F;
class Land_Laptop_02_unfolded_F: Land_Laptop_02_F {
XEH_ENABLED;
};
};