This commit is contained in:
aozhiwei 2024-01-12 17:06:07 +08:00
parent ca612deb59
commit a4a4952cc6
2 changed files with 13 additions and 0 deletions

View File

@ -16,4 +16,14 @@ namespace mt
}
const BattleHeroGrow* BattleHeroGrow::GetNextMeta() const
{
return nullptr;
}
bool BattleHeroGrow::IsFullLevel() const
{
return false;
}
}

View File

@ -14,6 +14,9 @@ namespace mt
void Init1();
void Init2();
const BattleHeroGrow* GetNextMeta() const;
bool IsFullLevel() const;
private:
};