basic movement

This commit is contained in:
2026-03-14 22:27:54 +01:00
parent b19f595daf
commit 2983b919cd
24 changed files with 368 additions and 57 deletions

View File

@@ -6,6 +6,13 @@
#include <utils.hpp>
namespace Game::Renderer {
typedef struct {
float camX;
float camY;
int screenW;
int screenH;
} RendererConfig;
class Renderer {
public:
Renderer();