Add selection to DrawableRoom.

This commit is contained in:
DrabWeb
2018-05-10 22:48:07 -03:00
parent d87ac5a1cb
commit ec53927d8e
4 changed files with 206 additions and 179 deletions

View File

@ -0,0 +1,11 @@
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
namespace osu.Game.Graphics.UserInterface
{
public enum SelectionState
{
NotSelected,
Selected
}
}