diff --git a/source/room.cpp b/source/room.cpp index e610b09..6d9ded5 100644 --- a/source/room.cpp +++ b/source/room.cpp @@ -224,4 +224,8 @@ namespace room return door_height[d]; } + uint8_t getColor() + { + return color; + } } diff --git a/source/room.h b/source/room.h index 85a2b44..3c15779 100644 --- a/source/room.h +++ b/source/room.h @@ -23,4 +23,5 @@ namespace room vec3_t getMax(); uint8_t getDoors(); uint8_t getDoor(const int d); + uint8_t getColor(); }