FINAL: v1

This commit is contained in:
2026-03-26 19:34:47 +01:00
parent 031c0e7293
commit 0f776347f4
11 changed files with 181 additions and 17 deletions

11
src/game/agame/enemy.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include <game/agame/enemy.hpp>
namespace Game::AGame {
void Enemy::start() {
mZIndex = 20;
}
void Enemy::update(float deltaTime) {
return;
}
}