1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-15 15:03:10 +08:00
osu-lazer/osu.Game/Rulesets/Edit/PlayfieldOverlay.cs
2017-11-30 22:21:02 +09:00

20 lines
447 B
C#

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