diff --git a/server/gameserver/room.cc b/server/gameserver/room.cc index 0f1d4a1..fdb5be1 100644 --- a/server/gameserver/room.cc +++ b/server/gameserver/room.cc @@ -1753,6 +1753,7 @@ void Room::NotifyGameStart() if (room_type_ == RT_NewBrid || room_type_ == RT_MidBrid) { NewBieRoomStart(); } + InitAndroidAI(); } void Room::InitObstacleDatas() @@ -2874,3 +2875,8 @@ size_t Room::GetRoomMaxPlayerNum() return NORMAL_ROOM_MAX_PLAYER_NUM; } } + +void Room::InitAndroidAI() +{ + +} diff --git a/server/gameserver/room.h b/server/gameserver/room.h index 8810a28..f3b5b4a 100644 --- a/server/gameserver/room.h +++ b/server/gameserver/room.h @@ -198,6 +198,7 @@ private: void ShuaLastGas(); bool IsMiniRoom(); size_t GetRoomMaxPlayerNum(); + void InitAndroidAI(); #ifdef DEBUG void InitDebugInfo();