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

18
src/sim/world_object.hpp Normal file
View File

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