From 70595c69658fd4acfbcf4352056e0cac5d386cfc Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 18 Apr 2021 22:01:03 +0200 Subject: [PATCH] Grouped together class variables aswell. --- main/dungeon_room.h | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/main/dungeon_room.h b/main/dungeon_room.h index 6598660..6489340 100644 --- a/main/dungeon_room.h +++ b/main/dungeon_room.h @@ -193,11 +193,6 @@ private: int _sizey; int _sizez; -#ifdef VOXELMAN_PRESENT - Ref _environment; - Ref _structure; -#endif - Vector > _prop_datas; #ifdef ESS_PRESENT @@ -205,6 +200,9 @@ private: #endif #ifdef VOXELMAN_PRESENT + Ref _environment; + Ref _structure; + Vector > _environment_datas; Vector > _voxel_surfaces; #endif