15 lines
219 B
C++
15 lines
219 B
C++
#pragma once
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class Castle {
|
|
private:
|
|
const size_t x, y;
|
|
const std::vector<std::string> image;
|
|
const std::vector<std::string> mask;
|
|
|
|
public:
|
|
Castle();
|
|
void draw() const;
|
|
};
|