This commit is contained in:
Hunter 2023-05-27 10:08:01 -04:00
commit 2f372ede93
212 changed files with 50289 additions and 0 deletions

24
include/map.hpp Normal file
View file

@ -0,0 +1,24 @@
#pragma once
#include <string>
#include <vector>
struct MapData {
std::vector<std::string> mapTiles;
std::vector<std::string> mapEnemys;
};
struct Map {
std::string mapName;
std::string mapVersion;
std::string mapAuthor;
int mapWidth; // Width of the map in tiles
int mapHeight;
int mapScaleX; // Rendering scale
int mapScaleY; // Rendering scale
MapData data;
};
Map PLoadMapFromFile(std::string filepath);
void PSaveMapToFile(Map *map, std::string filepath);
void PRenderMap(Map *map);