chore: Initial commit

This commit is contained in:
2026-04-16 21:30:35 +01:00
commit 1d12a23e15
13 changed files with 430 additions and 0 deletions

23
src/sim/airfield.hpp Normal file
View File

@@ -0,0 +1,23 @@
#pragma once
#include <vector>
#include "../math.hpp"
#include "world_object.hpp"
namespace dxd::sim
{
class Airfield : public WorldObject
{
private:
vec2 _position;
public:
Airfield(vec2 position) : _position(position) {}
void tick(float timestep, vec2 bounds) override;
void draw(Renderer *rend) override;
};
} // namespace dxd::sim