bomber.hh 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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_BOMBER_HH
  9. #define G1_BOMBER_HH
  10. #include "objs/map_piece.hh"
  11. class g1_bomber_class : public g1_map_piece_class
  12. {
  13. protected:
  14. // internal modes for bomber
  15. w8 mode;
  16. i4_float target_height;
  17. w32 sway;
  18. public:
  19. g1_bomber_class(g1_object_type id, g1_loader_class *fp);
  20. virtual void save(g1_saver_class *fp);
  21. i4_bool move(i4_float x_amount, i4_float y_amount);
  22. virtual void fire();
  23. virtual void think();
  24. void damage(g1_object_class *obj, int hp, i4_3d_vector _damage_dir);
  25. };
  26. #endif