mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 23:08:05 -05:00
25 lines
449 B
C++
25 lines
449 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace state_map
|
|
{
|
|
class StateMapLayoutEntry
|
|
{
|
|
public:
|
|
StateMapLayoutEntry(std::string name, size_t resultCount);
|
|
|
|
std::string m_name;
|
|
size_t m_result_count;
|
|
};
|
|
|
|
class StateMapLayout
|
|
{
|
|
public:
|
|
explicit StateMapLayout(std::vector<StateMapLayoutEntry> layoutEntries);
|
|
|
|
std::vector<StateMapLayoutEntry> m_layout_entries;
|
|
};
|
|
}
|