0
0
mirror of https://github.com/Nimac0/SDL_Minigame synced 2026-01-12 15:53:42 +00:00

18 lines
176 B
C++

#pragma once
#include "Defines.h"
#include <string>
class Map
{
public:
Map();
~Map();
static void loadMap(const char* path, int sizeX, int sizeY);
private:
};