game2006/server/gameserver/mt/BattleHeroGrow.h
aozhiwei 8cfc78be90 1
2024-01-15 11:27:54 +08:00

27 lines
583 B
C++

#pragma once
#include "mt/macro.h"
#include "mtb/BattleHeroGrow.h"
namespace mt
{
DECLARE_ID_TABLE(BattleHeroGrow, mtb::BattleHeroGrow,
"battleHeroGrow@battleHeroGrow.json",
"id")
public:
void Init1();
void Init2();
const BattleHeroGrow* GetNextMeta() const;
bool IsFullLevel() const;
std::shared_ptr<std::vector<std::tuple<int, float>>> GetLevelAttrs() const;
std::shared_ptr<std::vector<int>> GetEquipEffects() const;
int GetSkillEffect() const;
private:
};
}