mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 08:35:43 +00:00
21 lines
358 B
C++
21 lines
358 B
C++
#include "StateMapDefinition.h"
|
|
|
|
using namespace state_map;
|
|
|
|
StateMapRule::StateMapRule()
|
|
: m_value(0u),
|
|
m_passthrough(false)
|
|
{
|
|
}
|
|
|
|
StateMapEntry::StateMapEntry()
|
|
: m_default_index(0u)
|
|
{
|
|
}
|
|
|
|
StateMapDefinition::StateMapDefinition(std::string name, const size_t entryCount)
|
|
: m_name(std::move(name)),
|
|
m_state_map_entries(entryCount)
|
|
{
|
|
}
|