mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 06:49:28 -05:00
20 lines
326 B
C++
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;
|
|
}; |