NavArea.pkg 438 B

1234567891011121314
  1. $#include "Navigation/NavArea.h"
  2. class NavArea : public Component
  3. {
  4. unsigned GetAreaID() const;
  5. void SetAreaID(unsigned);
  6. BoundingBox GetBoundingBox();
  7. void SetBoundingBox(const BoundingBox& bnds);
  8. BoundingBox GetWorldBoundingBox() const;
  9. tolua_property__get_set unsigned areaID;
  10. tolua_property__get_set BoundingBox boundingBox;
  11. tolua_readonly tolua_property__get_set BoundingBox worldBoundingBox;
  12. };