This commit is contained in:
aozhiwei 2023-05-31 19:42:19 +08:00
parent d6c6124ede
commit f5654191cd

View File

@ -65,6 +65,13 @@ void Android::Initialize()
avatar_url = a8::XValue(50001 + rand() % 10).GetString();
head_frame = 60000;
}
{
std::vector<int> skill_list;
GetBattleContext()->GetSkillList(skill_list);
for (auto& skill_id : skill_list) {
AddSkill(skill_id);
}
}
}
void Android::Update(int delta_time)