mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
31 lines
514 B
C++
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";
|
|
};
|
|
};
|
|
}; |