Changed LoadScript to StringView.
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2020-06-26 18:23:40 +02:00
parent 48639eeee5
commit 772619db0f
7 changed files with 7 additions and 9 deletions

View File

@@ -44,6 +44,6 @@ const std::unique_ptr<const DamageLibrary>& BattleLibrary::GetDamageLibrary() co
const std::unique_ptr<const MiscLibrary>& BattleLibrary::GetMiscLibrary() const noexcept { return _miscLibrary; }
Script* BattleLibrary::LoadScript(ScriptCategory category, const ArbUt::BasicStringView& scriptName) const {
Script* BattleLibrary::LoadScript(ScriptCategory category, const ArbUt::StringView& scriptName) const {
return _scriptResolver->LoadScript(category, scriptName);
}