1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #ifndef BOUNDS_H
- #define BOUNDS_H
- #include "core/math/bsp_tree.h"
- #include "core/resource.h"
- class Bounds : public Resource {
- GDCLASS(Bounds, Resource);
- BSP_Tree bsp_tree;
- protected:
- static void _bind_methods();
- public:
- void set_bsp_tree(const BSP_Tree &p_bsp_tree);
- BSP_Tree get_bsp_tree() const;
- Bounds();
- };
- #endif
|