World implementation

This commit is contained in:
Rendo 2026-03-10 23:59:39 +05:00
commit a54f49d188
3 changed files with 63 additions and 3 deletions

View file

@ -4,7 +4,10 @@
#include <raylib.h>
#include <raymath.h>
class Entity{};
class Entity{
public:
virtual ~Entity(){}
};
class IProcessable {
public: