moneycrate.hh 910 B

1234567891011121314151617181920212223242526272829
  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_MONEYCRATE_HH
  9. #define G1_MONEYCRATE_HH
  10. #include "g1_object.hh"
  11. class g1_moneycrate_class : public g1_object_class
  12. {
  13. public:
  14. g1_moneycrate_class(g1_object_type id, g1_loader_class *fp);
  15. void setup(i4_3d_vector pos, w32 val);
  16. void follow(i4_3d_vector pos, i4_3d_vector rot);
  17. void release();
  18. w32 value() const;
  19. static i4_3d_vector crate_attach();
  20. virtual void think();
  21. };
  22. #endif