Move ScriptCategory enum outside of class scope of ScriptResolver.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-02-20 13:05:15 +01:00
parent f22c23d593
commit d4fd7282f5
6 changed files with 12 additions and 7 deletions

View File

@@ -38,6 +38,6 @@ const DamageLibrary* BattleLibrary::GetDamageLibrary() const { return _damageLib
const MiscLibrary* BattleLibrary::GetMiscLibrary() const { return _miscLibrary; }
Script* BattleLibrary::LoadScript(ScriptResolver::ScriptCategory category, const std::string& scriptName) const {
Script* BattleLibrary::LoadScript(ScriptCategory category, const std::string& scriptName) const {
return _scriptResolver->LoadScript(category, scriptName);
}