Tileson 1.4.0
A helpful json parser for Tiled maps
Loading...
Searching...
No Matches
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
8namespace tson
9{
11 {
12 public:
13 ProjectData() = default;
15 std::vector<std::string> commands;
16 std::string extensionsPath;
17 std::vector<std::string> folders;
18 std::string objectTypesFile;
20
21 //Tileson specific
22 fs::path basePath;
23 std::vector<tson::ProjectFolder> folderPaths;
24 };
25}
26
27#endif //TILESON_PROJECTDATA_HPP
Definition ProjectData.hpp:11
std::string automappingRulesFile
Definition ProjectData.hpp:14
ProjectPropertyTypes projectPropertyTypes
Definition ProjectData.hpp:19
std::vector< std::string > folders
Definition ProjectData.hpp:17
ProjectData()=default
fs::path basePath
Definition ProjectData.hpp:22
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:23
Definition ProjectPropertyTypes.hpp:11
Definition Base64.hpp:12