diff --git a/src/const.hpp b/src/const.hpp index 2657f6a..e14a0e9 100644 --- a/src/const.hpp +++ b/src/const.hpp @@ -3,10 +3,10 @@ #ifndef CONST_NS #define CONST_NS -constexpr int SCREEN_WIDTH = 800; -constexpr int SCREEN_HEIGHT = 600; -constexpr int WORLD_WIDTH = 1600; -constexpr int WORLD_HEIGHT = 1200; +constexpr int SCREEN_WIDTH = 1600; +constexpr int SCREEN_HEIGHT = 1200; +constexpr int WORLD_WIDTH = 20000; +constexpr int WORLD_HEIGHT = 200000; constexpr int TARGET_FPS = 60; constexpr Uint64 TARGET_FRAME_TIME_NS = 1'000'000'000 / TARGET_FPS;