mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-13 00:40:53 +01:00
15 lines
241 B
C
15 lines
241 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <TiltedCore/Stl.hpp>
|
||
|
|
#include <Cell.h>
|
||
|
|
|
||
|
|
struct Map
|
||
|
|
{
|
||
|
|
using Coordinates = std::pair<int32_t, int32_t>;
|
||
|
|
|
||
|
|
Cell* At(int32_t aX, int32_t aY) noexcept;
|
||
|
|
|
||
|
|
private:
|
||
|
|
TiltedPhoques::Map<Coordinates, Cell> m_cells;
|
||
|
|
};
|