osu/osu.Game/Graphics/Containers/OsuContainer.cs

13 lines
369 B
C#

//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics.Containers;
namespace osu.Game.Graphics.Containers
{
class OsuContainer : AutoSizeContainer
{
public new OsuGameBase Game => base.Game as OsuGameBase;
}
}