mirror of
https://github.com/Jous99/F4MP.git
synced 2026-01-12 14:00:53 +01:00
14 lines
241 B
C++
14 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;
|
|
};
|