1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 01:49:53 +08:00
Files
osu-lazer/osu.Game/Graphics/Containers/OsuComponent.cs
T
2016-09-29 23:46:24 +09:00

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 OsuComponent : AutoSizeContainer
{
public new OsuGameBase Game => base.Game as OsuGameBase;
}
}