#ifndef HOLESOME_TILESET_CONFIG_HPP #define HOLESOME_TILESET_CONFIG_HPP #include #include struct TileSetConfig { std::string sheetName; std::vector tileIndices = {}; TileSetConfig() = default; TileSetConfig(std::string sheetName, std::vector tileIndices) { this->sheetName = std::move(sheetName); this->tileIndices = std::move(tileIndices); } }; #endif //HOLESOME_TILESET_CONFIG_HPP