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

@@ -2,16 +2,19 @@
#include "../math.hpp"
#include "../renderer.hpp"
#include "world.hpp"
namespace dxd::sim
{
class World;
class WorldObject
{
public:
WorldObject() {}
virtual void tick(float timestep, vec2 bounds) = 0;
virtual void tick(float timestep, World *world) = 0;
virtual void draw(Renderer *rend) = 0;
};