Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgWeapons/Item/Flashlight.hpp
2013-08-26 02:29:18 -05:00

31 lines
514 B
C++

class MeleeFlashlight : Pistol {
class ItemActions {
class Toolbelt {
text = "Add to toolbelt";
};
};
};
class ItemFlashlight : ItemCore {
class ItemActions {
class Toolbelt {
text = "Remove from toolbelt";
};
};
};
class MeleeFlashlightRed : MeleeFlashlight {
class ItemActions {
class Toolbelt {
text = "Add to toolbelt";
};
};
};
class ItemFlashlightRed : ItemCore {
class ItemActions {
class Toolbelt {
text = "Remove from toolbelt";
};
};
};