This commit is contained in:
2026-05-02 15:18:39 +02:00
parent 8be2cea49a
commit 56d567b77d
19 changed files with 634 additions and 94 deletions

View File

@@ -10,5 +10,10 @@ namespace Game::AGame {
GAME_ENTITY(Enemy)
public:
void onCollisionEnter(Object::Entity* other) override;
bool hasAdjacentEnemy();
private:
float mMoveSpeedX = 0.f;
float mMoveSpeedY = 0.f;
float mDirectionChangeTimer = 0.f;
END_GAME_ENTITY()
}