Fixed naming error.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
a580649224
commit
5146a70d8b
|
@ -8,8 +8,8 @@ export uint8_t CreatureLib_LearnableAttacks_Construct(LearnableAttacks*& out, si
|
||||||
|
|
||||||
export void CreatureLib_LearnableAttacks_Destruct(LearnableAttacks* p) { delete p; }
|
export void CreatureLib_LearnableAttacks_Destruct(LearnableAttacks* p) { delete p; }
|
||||||
|
|
||||||
export void CreatureLib_LearnableAttacks_AddLevelMove(LearnableAttacks* p, uint8_t level, const AttackData* attack) {
|
export void CreatureLib_LearnableAttacks_AddLevelAttack(LearnableAttacks* p, uint8_t level, const AttackData* attack) {
|
||||||
p->AddLevelMove(level, attack);
|
p->AddLevelAttack(level, attack);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const AttackData* const* CreatureLib_LearnableAttacks_GetAttacksForLevel(LearnableAttacks* p, uint8_t level) {
|
export const AttackData* const* CreatureLib_LearnableAttacks_GetAttacksForLevel(LearnableAttacks* p, uint8_t level) {
|
||||||
|
|
Loading…
Reference in New Issue