mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-19 15:52:53 +00:00
15 lines
291 B
C++
15 lines
291 B
C++
#include "StateMapDefinition.h"
|
|
|
|
using namespace state_map;
|
|
|
|
bool StateMapRule::IsPassthrough() const
|
|
{
|
|
return m_values.empty();
|
|
}
|
|
|
|
StateMapDefinition::StateMapDefinition(std::string name, const size_t entryCount)
|
|
: m_name(std::move(name)),
|
|
m_state_map_entries(entryCount)
|
|
{
|
|
}
|