increase world size

This commit is contained in:
PoliEcho 2025-02-19 11:19:41 +01:00
parent 32dd6dfce7
commit 4dd53284ca

View File

@ -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;