initial commit
This commit is contained in:
14
src/Castle.h
Normal file
14
src/Castle.h
Normal 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();
|
||||
};
|
||||
Reference in New Issue
Block a user