mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-05-10 22:44:58 +00:00
22 lines
431 B
C++
22 lines
431 B
C++
#pragma once
|
|
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
class ZoneDefinitionEntry
|
|
{
|
|
public:
|
|
std::string m_asset_type;
|
|
std::string m_asset_name;
|
|
bool m_is_reference;
|
|
|
|
ZoneDefinitionEntry();
|
|
ZoneDefinitionEntry(std::string type, std::string name, bool isReference);
|
|
};
|
|
|
|
class ZoneDefinition
|
|
{
|
|
public:
|
|
std::unordered_map<std::string, std::string> m_metadata;
|
|
std::vector<ZoneDefinitionEntry> m_assets;
|
|
}; |