This commit is contained in:
aozhiwei 2024-02-04 13:15:39 +08:00
parent 8deb24c276
commit 1bbcb11924
2 changed files with 0 additions and 6 deletions

View File

@ -35,11 +35,6 @@ void RoomOb::AddOb(Player* hum)
id_hash_[hum->account_id] = hum;
}
void RoomOb::SendViewerUiMemberUpdate(std::vector<int> member_ids)
{
}
void RoomOb::TraverseOb(std::function<bool (Player*)> cb)
{
for (auto& pair : id_hash_) {

View File

@ -14,7 +14,6 @@ class RoomOb : public std::enable_shared_from_this<RoomOb>
Player* GetByAccountId(const std::string& account_id);
void AddOb(Player* hum);
void SendViewerUiMemberUpdate(std::vector<int> member_ids);
void TraverseOb(std::function<bool (Player*)> cb);
private: