mirror of
https://github.com/Nimac0/SDL_Minigame
synced 2026-01-12 13:43:41 +00:00
11 lines
137 B
C++
11 lines
137 B
C++
#pragma once
|
|
|
|
class Map
|
|
{
|
|
public:
|
|
Map() = default;
|
|
~Map() = default;
|
|
|
|
static void loadMap(const char* path, int sizeX, int sizeY);
|
|
};
|