Files
OpenAssetTools/src/ZoneCommon/Zone/AssetList/AssetList.h
2023-10-07 19:41:54 +02:00

20 lines
326 B
C++

#pragma once
#include <string>
#include <vector>
class AssetListEntry
{
public:
std::string m_type;
std::string m_name;
bool m_is_reference;
AssetListEntry();
AssetListEntry(std::string type, std::string name, bool isReference);
};
class AssetList
{
public:
std::vector<AssetListEntry> m_entries;
};