Add TestCase for main menu ButtonSystem.

This commit is contained in:
Dean Herbert
2016-09-28 15:30:06 +09:00
parent 27b96ab6c9
commit 7dcf2c6269
5 changed files with 26 additions and 18 deletions

View File

@ -1,19 +1,12 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - 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;
public new OsuGameBase Game => base.Game as OsuGameBase;
}
}

View File

@ -1,17 +1,12 @@
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
//Licensed under the MIT Licence - 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 class OsuLargeComponent : LargeContainer
{
public new OsuGame Game => base.Game as OsuGame;
public new OsuGameBase Game => base.Game as OsuGameBase;
}
}