Clone of PhatAC @ https://github.com/floaterxk/PhatAC

Lifestone.h 222B

123456789101112131415
  1. #pragma once
  2. #define LIFESTONE_MAX_BIND_DISTANCE 4.0f
  3. class CBaseLifestone : public CPhysicsObj
  4. {
  5. public:
  6. CBaseLifestone();
  7. ~CBaseLifestone();
  8. virtual void Precache();
  9. virtual void Use(CPhysicsObj *);
  10. protected:
  11. };