mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
Add base for menu eventhandlerset parsing
This commit is contained in:
@ -2,6 +2,12 @@
|
||||
|
||||
using namespace menu;
|
||||
|
||||
MenuFileParserState::EventHandlerConditionState::EventHandlerConditionState(std::unique_ptr<CommonEventHandlerCondition> condition)
|
||||
: m_in_condition_elements(true),
|
||||
m_condition(std::move(condition))
|
||||
{
|
||||
}
|
||||
|
||||
MenuFileParserState::MenuFileParserState(const FeatureLevel featureLevel)
|
||||
: m_feature_level(featureLevel),
|
||||
m_in_global_scope(false)
|
||||
|
Reference in New Issue
Block a user