Adds SetType to angelscript
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-03-12 12:46:05 +01:00
parent 175f3dfd81
commit b8f790cb61
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 3 additions and 0 deletions

View File

@ -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);