summaryrefslogtreecommitdiff
path: root/scene/resources/room.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/resources/room.h')
-rw-r--r--scene/resources/room.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scene/resources/room.h b/scene/resources/room.h
index 6a8deac8b3..84d68e5718 100644
--- a/scene/resources/room.h
+++ b/scene/resources/room.h
@@ -41,7 +41,7 @@ class RoomBounds : public Resource {
RES_BASE_EXTENSION("room");
RID area;
- DVector<Face3> geometry_hint;
+ PoolVector<Face3> geometry_hint;
protected:
@@ -53,8 +53,8 @@ public:
virtual RID get_rid() const;
- void set_geometry_hint(const DVector<Face3>& geometry_hint);
- DVector<Face3> get_geometry_hint() const;
+ void set_geometry_hint(const PoolVector<Face3>& geometry_hint);
+ PoolVector<Face3> get_geometry_hint() const;
RoomBounds();
~RoomBounds();