summaryrefslogtreecommitdiff
path: root/scene/resources/room.h
diff options
context:
space:
mode:
authormarcelofg55 <marcelofg55@gmail.com>2016-06-12 13:31:22 -0300
committermarcelofg55 <marcelofg55@gmail.com>2016-06-12 13:31:22 -0300
commit378785656350fc1eacb523ca42307b651607fa6c (patch)
tree8ba613fbf3faecb4a9b88bc855c16f028dfa238d /scene/resources/room.h
parent4bb93c976c6b67b4538c8a012ea549ec24e3ac1a (diff)
Fixed overloaded virtual functions with const vs none warning
Diffstat (limited to 'scene/resources/room.h')
-rw-r--r--scene/resources/room.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/resources/room.h b/scene/resources/room.h
index a9f159cd46..3ed41a3e61 100644
--- a/scene/resources/room.h
+++ b/scene/resources/room.h
@@ -50,7 +50,7 @@ protected:
public:
- virtual RID get_rid();
+ virtual RID get_rid() const;
void set_bounds( const BSP_Tree& p_bounds );
BSP_Tree get_bounds() const;