You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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