mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
Initial commit.
This commit is contained in:
19
osu.Game/Graphics/Containers/OsuComponent.cs
Normal file
19
osu.Game/Graphics/Containers/OsuComponent.cs
Normal file
@ -0,0 +1,19 @@
|
||||
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
//Licensed under the MIT License - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
|
||||
namespace osu.Game.Graphics.Containers
|
||||
{
|
||||
class OsuComponent : AutoSizeContainer
|
||||
{
|
||||
public new OsuGame Game => base.Game as OsuGame;
|
||||
}
|
||||
}
|
17
osu.Game/Graphics/Containers/OsuGameMode.cs
Normal file
17
osu.Game/Graphics/Containers/OsuGameMode.cs
Normal file
@ -0,0 +1,17 @@
|
||||
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
//Licensed under the MIT License - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using osu.Framework.GameModes;
|
||||
|
||||
namespace osu.Game.Graphics.Containers
|
||||
{
|
||||
class OsuGameMode : GameMode
|
||||
{
|
||||
public new OsuGame Game => base.Game as OsuGame;
|
||||
}
|
||||
}
|
17
osu.Game/Graphics/Containers/OsuLargeComponent.cs
Normal file
17
osu.Game/Graphics/Containers/OsuLargeComponent.cs
Normal file
@ -0,0 +1,17 @@
|
||||
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
//Licensed under the MIT License - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
|
||||
namespace osu.Game.Graphics.Containers
|
||||
{
|
||||
class OsuLargeComponent : LargeContainer
|
||||
{
|
||||
public new OsuGame Game => base.Game as OsuGame;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user