This commit is contained in:
2026-05-13 07:58:59 +02:00
parent d9769bdbbb
commit 892d8f22eb
18 changed files with 242 additions and 77 deletions

View File

@@ -14,5 +14,11 @@ namespace Game::AGame {
float mMoveSpeedX = 0.f;
float mMoveSpeedY = 0.f;
float mDirectionChangeTimer = 0.f;
bool mOnSea = false;
static constexpr float CLEANUP_RADIUS = 50.f;
static constexpr int CLEANUP_SCORE_BONUS = 5;
static constexpr float LAND_SPEED_MIN = 20.f;
static constexpr float LAND_SPEED_MAX = 50.f;
static constexpr float SEA_SPEED = 14.f;
END_GAME_ENTITY()
}