From bba66a0ccb7281cd6c717fe9784a04a4fcf72700 Mon Sep 17 00:00:00 2001 From: cflip Date: Sun, 27 Feb 2022 10:55:11 -0700 Subject: Add ClangFormat configuration --- src/level.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/level.h') 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; -- cgit v1.2.3