2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-09-24 09:16:39 +00:00

Add possibility to include asset lists in project definition

This commit is contained in:
Jan
2023-10-07 15:06:41 +02:00
parent e4fd8543e3
commit fb5c67b5ce
18 changed files with 142 additions and 70 deletions

View File

@@ -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;
};