1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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 */