1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 10:47:45 +08:00

18 lines
606 B
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-05-22 00:07:15 -03:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-05-22 13:05:18 -03:00
using osu.Framework.Configuration;
2017-05-22 00:07:15 -03:00
using osu.Game.Database;
using osu.Game.Users;
namespace osu.Game.Online.Multiplayer
{
2017-05-22 12:44:58 -03:00
public class Room
2017-05-22 00:07:15 -03:00
{
2017-05-22 13:05:18 -03: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 00:07:15 -03:00
}
}