mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-02-14 19:33:02 +00:00
fix: compilation with CommonTechset
This commit is contained in:
20
src/ObjCompiling/Techset/StateMap/StateMapDefinition.cpp
Normal file
20
src/ObjCompiling/Techset/StateMap/StateMapDefinition.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#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)
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user