20 lines
211 B
C
20 lines
211 B
C
|
#ifndef LEVEL_H
|
||
|
#define LEVEL_H
|
||
|
|
||
|
#include <array>
|
||
|
|
||
|
constexpr int side = 32;
|
||
|
|
||
|
using Map = std::array<std::array<int, side>, side>;
|
||
|
|
||
|
class Level
|
||
|
{
|
||
|
private:
|
||
|
Map map;
|
||
|
|
||
|
public:
|
||
|
Level();
|
||
|
};
|
||
|
|
||
|
#endif // LEVEL_H
|