cfgAmmo.hpp 679 B

12345678910111213141516171819202122232425262728293031323334
  1. class CfgAmmo {
  2. class FlareCore;
  3. class FlareBase: FlareCore {
  4. timeToLive = 240;
  5. brightness = 5;
  6. intensity = 1;
  7. flareSize = 1;
  8. };
  9. class F_40mm_White: FlareBase {
  10. timeToLive = 240;
  11. brightness = 5;
  12. intensity = 1;
  13. flareSize = 1;
  14. };
  15. class Flare_82mm_AMOS_White: FlareCore {
  16. timeToLive = 240;
  17. brightness = 5;
  18. intensity = 1;
  19. flareSize = 1;
  20. };
  21. class StrobeCore;
  22. class StrobeBase: StrobeCore {
  23. deflecting = 0;
  24. };
  25. class B_IRStrobe: StrobeBase {
  26. deflecting = 0;
  27. };
  28. class O_IRStrobe: StrobeBase {
  29. deflecting = 0;
  30. };
  31. class I_IRStrobe: Strobebase {
  32. deflecting = 0;
  33. };
  34. };