mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-25 14:17:54 -05:00
Add possibility to include asset lists in project definition
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
class AssetListEntry
|
||||
{
|
||||
@ -10,3 +11,9 @@ public:
|
||||
AssetListEntry();
|
||||
AssetListEntry(std::string type, std::string name);
|
||||
};
|
||||
|
||||
class AssetList
|
||||
{
|
||||
public:
|
||||
std::vector<AssetListEntry> m_entries;
|
||||
};
|
Reference in New Issue
Block a user