From 5e54af301b2b99e8479da3195ef30d0f8ec19227 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Fri, 23 Mar 2018 00:00:50 -0400 Subject: Initial commit --- src/Rendering.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/Rendering.h (limited to 'src/Rendering.h') diff --git a/src/Rendering.h b/src/Rendering.h new file mode 100644 index 0000000..fcc147b --- /dev/null +++ b/src/Rendering.h @@ -0,0 +1,16 @@ +#ifndef RENDERING_H +#define RENDERING_H + +class Rendering { +public: + static int RENDER_SCALE; + static const int GRID_WIDTH = 400; + static const int GRID_HEIGHT = 300; + static int WIDTH; + static int HEIGHT; +private: + +}; + +#endif /* RENDERING_H */ + -- cgit v1.2.3