summaryrefslogtreecommitdiff
path: root/scene/resources/bounds.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/resources/bounds.h')
-rw-r--r--scene/resources/bounds.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/scene/resources/bounds.h b/scene/resources/bounds.h
index bd5d996a36..62e1b8e0ef 100644
--- a/scene/resources/bounds.h
+++ b/scene/resources/bounds.h
@@ -29,21 +29,19 @@
#ifndef BOUNDS_H
#define BOUNDS_H
-#include "resource.h"
#include "bsp_tree.h"
+#include "resource.h"
class Bounds : public Resource {
- GDCLASS(Bounds,Resource);
+ GDCLASS(Bounds, Resource);
BSP_Tree bsp_tree;
protected:
-
static void _bind_methods();
public:
-
- void set_bsp_tree(const BSP_Tree& p_bsp_tree);
+ void set_bsp_tree(const BSP_Tree &p_bsp_tree);
BSP_Tree get_bsp_tree() const;
Bounds();