Tileson  1.3.0
A helpful json parser for Tiled maps
ProjectData.hpp
Go to the documentation of this file.
1 //
2 // Created by robin on 01.08.2020.
3 //
4 
5 #ifndef TILESON_PROJECTDATA_HPP
6 #define TILESON_PROJECTDATA_HPP
7 
8 namespace tson
9 {
11  {
12  public:
13  ProjectData() = default;
14  std::string automappingRulesFile;
15  std::vector<std::string> commands;
16  std::string extensionsPath;
17  std::vector<std::string> folders;
18  std::string objectTypesFile;
19 
20  //Tileson specific
21  fs::path basePath;
22  std::vector<tson::ProjectFolder> folderPaths;
23  };
24 }
25 
26 #endif //TILESON_PROJECTDATA_HPP
Definition: ProjectData.hpp:11
std::string automappingRulesFile
Definition: ProjectData.hpp:14
std::vector< std::string > folders
Definition: ProjectData.hpp:17
ProjectData()=default
fs::path basePath
Definition: ProjectData.hpp:21
std::string objectTypesFile
Definition: ProjectData.hpp:18
std::vector< std::string > commands
Definition: ProjectData.hpp:15
std::string extensionsPath
Definition: ProjectData.hpp:16
std::vector< tson::ProjectFolder > folderPaths
Definition: ProjectData.hpp:22
Definition: Base64.hpp:12