- Es pot reclamar el color de l'habitació

This commit is contained in:
2023-09-20 18:57:26 +02:00
parent 095f675d40
commit 80e5ee4680
2 changed files with 5 additions and 0 deletions

View File

@@ -224,4 +224,8 @@ namespace room
return door_height[d]; return door_height[d];
} }
uint8_t getColor()
{
return color;
}
} }

View File

@@ -23,4 +23,5 @@ namespace room
vec3_t getMax(); vec3_t getMax();
uint8_t getDoors(); uint8_t getDoors();
uint8_t getDoor(const int d); uint8_t getDoor(const int d);
uint8_t getColor();
} }