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

14
src/Castle.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include "Entity.h"
class Castle : public Entity {
private:
static const std::vector<std::string> image;
static const std::vector<std::string> mask;
public:
Castle();
void draw();
void update();
};