Fixed spelling error in AngelScriptResolver name.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-24 00:05:43 +02:00
parent 1d5c6d696e
commit 42ea76cf53
12 changed files with 61 additions and 61 deletions

View File

@@ -10,17 +10,17 @@
#include "AngelScriptTypeInfo.hpp"
#include "ContextPool.hpp"
class AngelScripResolver;
class AngelScriptResolver;
class AngelScriptScript : public PkmnLib::Battling::PkmnScript {
private:
AngelScripResolver* _resolver = nullptr;
AngelScriptResolver* _resolver = nullptr;
AngelScriptTypeInfo* _type = nullptr;
ContextPool* _ctxPool = nullptr;
asIScriptObject* _obj = nullptr;
CScriptArray* GetEffectParameters(const List<CreatureLib::Library::EffectParameter*>& ls);
public:
AngelScriptScript(AngelScripResolver* resolver, AngelScriptTypeInfo* type, asIScriptObject* obj,
AngelScriptScript(AngelScriptResolver* resolver, AngelScriptTypeInfo* type, asIScriptObject* obj,
ContextPool* ctxPool)
: _resolver(resolver), _type(type), _ctxPool(ctxPool), _obj(obj) {}