mirror of
https://github.com/osukey/osukey.git
synced 2025-05-23 22:47:26 +09:00
13 lines
348 B
C#
13 lines
348 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.GameModes;
|
|
|
|
namespace osu.Game.Graphics.Containers
|
|
{
|
|
public class OsuGameMode : GameMode
|
|
{
|
|
public new OsuGame Game => base.Game as OsuGame;
|
|
}
|
|
}
|