parent
175f3dfd81
commit
b8f790cb61
src/ScriptResolving/AngelScript/TypeRegistry/Battling
|
@ -135,6 +135,9 @@ void RegisterPokemonClass::RegisterPokemonType(asIScriptEngine* engine) {
|
|||
r = engine->RegisterObjectMethod("Pokemon", "uint8 GetType(uint64 index) const", asFUNCTION(GetTypeWrapper),
|
||||
asCALL_CDECL_OBJFIRST);
|
||||
Ensure(r >= 0);
|
||||
r = engine->RegisterObjectMethod("Pokemon", "void SetType(uint8 index, uint8 type)",
|
||||
asMETHOD(PkmnLib::Battling::Pokemon, SetType), asCALL_THISCALL);
|
||||
Ensure(r >= 0);
|
||||
|
||||
r = engine->RegisterObjectMethod("Pokemon", "void set_Height(float value) property",
|
||||
asMETHOD(PkmnLib::Battling::Pokemon, SetHeight), asCALL_THISCALL);
|
||||
|
|
Loading…
Reference in New Issue