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

13
src/Waterline.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include "Entity.h"
class Waterline : public Entity {
private:
std::vector<std::string> shape;
void shiftString(std::string &, int direction);
public:
Waterline();
void draw();
void update();
};