Phoenix/src/mapEditorState.hpp
2023-05-27 11:17:06 -04:00

13 lines
246 B
C++

#pragma once
#include "map.hpp"
#include <string>
struct EditorGlobalState {
std::string mapFilePath;
bool loadedMap = false;
bool placeTileMode = false;
Map currentMap;
const char *selectedTileName = "WALL";
int editorScale = 1;
};