summaryrefslogtreecommitdiff
path: root/src/level.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/level.h')
-rw-r--r--src/level.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/level.h b/src/level.h
index 0ffdac2..344d35f 100644
--- a/src/level.h
+++ b/src/level.h
@@ -11,6 +11,7 @@ public:
uint8_t get(int x, int y);
void set(int x, int y, uint8_t tile);
bool inBounds(int x, int y) { return x >= 0 && x < m_width && y >= 0 && y < m_height; }
+
private:
int m_width, m_height;
uint8_t* m_tiles;