2017-05-23 08:13:57 +08:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
2017-05-22 11:07:15 +08:00
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2017-05-23 00:05:18 +08:00
|
|
|
using osu.Framework.Configuration;
|
2017-07-26 12:22:46 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2017-05-22 11:07:15 +08:00
|
|
|
using osu.Game.Users;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Multiplayer
|
|
|
|
{
|
2017-05-22 23:44:58 +08:00
|
|
|
public class Room
|
2017-05-22 11:07:15 +08:00
|
|
|
{
|
2017-05-23 00:05:18 +08:00
|
|
|
public Bindable<string> Name = new Bindable<string>();
|
|
|
|
public Bindable<User> Host = new Bindable<User>();
|
|
|
|
public Bindable<RoomStatus> Status = new Bindable<RoomStatus>();
|
2017-05-31 08:41:20 +08:00
|
|
|
public Bindable<GameType> Type = new Bindable<GameType>();
|
2017-05-30 16:12:11 +08:00
|
|
|
public Bindable<BeatmapInfo> Beatmap = new Bindable<BeatmapInfo>();
|
|
|
|
public Bindable<int?> MaxParticipants = new Bindable<int?>();
|
|
|
|
public Bindable<User[]> Participants = new Bindable<User[]>();
|
2017-05-22 11:07:15 +08:00
|
|
|
}
|
|
|
|
}
|