feat: add summon menu

This commit is contained in:
2021-11-04 10:03:37 +01:00
parent f2f79781db
commit 129544d127
15 changed files with 307 additions and 51 deletions

View File

@@ -49,5 +49,10 @@ void Client::render() {
m_Game.renderWorld();
}
void Client::sendMobs(const std::vector<protocol::MobSend>& mobSends){
protocol::SendMobsPacket packet(mobSends);
m_Connexion.sendPacket(&packet);
}
} // namespace client
} // namespace td