turret.hh 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /********************************************************************** <BR>
  2. This file is part of Crack dot Com's free source code release of
  3. Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for
  4. information about compiling & licensing issues visit this URL</a>
  5. <PRE> If that doesn't help, contact Jonathan Clark at
  6. golgotha_source@usa.net (Subject should have "GOLG" in it)
  7. ***********************************************************************/
  8. #ifndef G1_TURRET_HH
  9. #define G1_TURRET_HH
  10. #include "sound/sound.hh"
  11. #include "objs/map_piece.hh"
  12. class g1_turret_class : public g1_map_piece_class
  13. {
  14. protected:
  15. g1_mini_object *muzzle;
  16. g1_mini_object *top;
  17. i4_float guard_angle, guard_pitch;
  18. int guard_time;
  19. int order;
  20. public:
  21. g1_turret_class(g1_object_type id, g1_loader_class *fp);
  22. virtual void save(g1_saver_class *fp);
  23. virtual void fire();
  24. virtual void think();
  25. virtual void setup(i4_float x, i4_float y, g1_object_class *creator);
  26. };
  27. #endif