initial commit

This commit is contained in:
2025-05-21 11:29:48 -04:00
commit 614ada45fd
19 changed files with 1093 additions and 0 deletions

19
src/Entity.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <cctype>
#include <ncurses.h>
#include <string>
#include <unordered_map>
#include <vector>
class Entity {
protected:
float x;
float y;
public:
Entity() : x(0), y(0) {}
virtual ~Entity() {}
inline float getX() const { return x; }
inline float getY() const { return y; }
};