2
0
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:
Jan Laupetin
2026-02-04 21:05:39 +00:00
parent 2e3e4821a0
commit 9c728e2dd5
28 changed files with 15 additions and 19 deletions

View 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)
{
}