Obstacle.pkg 348 B

12345678910111213141516
  1. $#include "Navigation/Obstacle.h"
  2. class Obstacle : public Component
  3. {
  4. void DrawDebugGeometry(bool depthTest);
  5. void SetRadius(float radius);
  6. void SetHeight(float height);
  7. float GetRadius() const;
  8. float GetHeight() const;
  9. tolua_property__get_set float radius;
  10. tolua_property__get_set float height;
  11. };