summaryrefslogtreecommitdiffhomepage
path: root/src/tile-defs.hpp
blob: 40d1809b9225e4de1f76a115edca0ed5f7283b6d (plain)
1
2
3
4
5
6
7
8
9
#pragma once
#include <cstddef>

namespace Magnum::Examples {

constexpr inline std::size_t TILE_MAX_DIM = 16;
constexpr inline std::size_t TILE_COUNT = TILE_MAX_DIM*TILE_MAX_DIM;

} // namespace Magnum::Examples