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