- Es poden consultar les portes de la habitació

This commit is contained in:
2023-06-02 10:56:03 +02:00
parent 639ec6d039
commit e710069aec
3 changed files with 7 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
#pragma once #pragma once
#include <stdint.h>
struct vec2_t struct vec2_t
{ {

View File

@@ -107,4 +107,9 @@ namespace room
{ {
return max; return max;
} }
uint8_t getDoors()
{
return doors;
}
} }

View File

@@ -14,4 +14,5 @@ namespace room
vec3_t getSize(); vec3_t getSize();
vec3_t getMin(); vec3_t getMin();
vec3_t getMax(); vec3_t getMax();
uint8_t getDoors();
} }