请问是哪条指令 public static int OnPrepareEnterRoomCallBack(int userId, int roomId, string roomName, string password, int userValue)
{
//SQLiteHelper db = new SQLiteHelper();
int ret = 0;
if (OnPrepareEnterRoomReceived != null)
{
ret=OnPrepareEnterRoomReceived(userId, roomId, roomName, password, userValue);
}
return ret;
}
这个吗