osu/osu.Game/Online/Multiplayer/Room.cs

18 lines
606 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-05-22 03:07:15 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-05-22 16:05:18 +00:00
using osu.Framework.Configuration;
2017-05-22 03:07:15 +00:00
using osu.Game.Database;
using osu.Game.Users;
namespace osu.Game.Online.Multiplayer
{
2017-05-22 15:44:58 +00:00
public class Room
2017-05-22 03:07:15 +00:00
{
2017-05-22 16:05:18 +00:00
public Bindable<string> Name = new Bindable<string>();
public Bindable<User> Host = new Bindable<User>();
public Bindable<RoomStatus> Status = new Bindable<RoomStatus>();
public Bindable<BeatmapMetadata> Beatmap = new Bindable<BeatmapMetadata>();
2017-05-22 03:07:15 +00:00
}
}