mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-19 03:07:58 -05:00
Add permissive mode for menu parsing that accepts unknown script tokens as long as they can be put into the script
This commit is contained in:
@ -22,8 +22,8 @@ namespace menu
|
||||
AbstractScopeSequenceHolder(const AbstractScopeSequenceHolder& other) = delete;
|
||||
AbstractScopeSequenceHolder(AbstractScopeSequenceHolder&& other) noexcept = default;
|
||||
AbstractScopeSequenceHolder& operator=(const AbstractScopeSequenceHolder& other) = delete;
|
||||
AbstractScopeSequenceHolder& operator=(AbstractScopeSequenceHolder&& other) noexcept = default;
|
||||
AbstractScopeSequenceHolder& operator=(AbstractScopeSequenceHolder&& other) noexcept = delete;
|
||||
|
||||
virtual void AddSequences(FeatureLevel featureLevel) = 0;
|
||||
virtual void AddSequences(FeatureLevel featureLevel, bool permissive) = 0;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user