feat: Random airfield spawning

This commit is contained in:
2026-04-16 22:50:27 +01:00
parent 965c0f393c
commit 49dd53f8e4
11 changed files with 76 additions and 10 deletions

View File

@@ -17,7 +17,7 @@ public:
Aircraft(vec2 position, float direction, float speed)
: _position(position), _direction(direction), _speed(speed) {}
void tick(float timestep, vec2 bounds) override;
void tick(float timestep, World *world) override;
void draw(Renderer *rend) override;
};