osu/osu.Game/Rulesets/Edit/PlayfieldOverlay.cs

20 lines
447 B
C#
Raw Normal View History

2017-11-30 12:56:12 +00:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-11-30 13:21:02 +00:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-11-30 12:56:12 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
namespace osu.Game.Rulesets.Edit
{
public class PlayfieldOverlay : CompositeDrawable
{
2017-11-30 12:58:41 +00:00
public PlayfieldOverlay()
2017-11-30 12:56:12 +00:00
{
RelativeSizeAxes = Axes.Both;
}
2017-11-30 12:58:41 +00:00
2017-11-30 12:56:12 +00:00
}
}