mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 06:18:05 -05:00
10 lines
203 B
C++
10 lines
203 B
C++
#include "MenuFileParserState.h"
|
|
|
|
using namespace menu;
|
|
|
|
MenuFileParserState::MenuFileParserState(const FeatureLevel featureLevel)
|
|
: m_feature_level(featureLevel),
|
|
m_in_global_scope(false)
|
|
{
|
|
}
|