mirror of
https://github.com/SK-la/osu-framework.git
synced 2026-03-13 11:20:31 +00:00
20 lines
433 B
C#
20 lines
433 B
C#
using osu.Framework.Allocation;
|
|
using NUnit.Framework;
|
|
|
|
namespace FlappyDon.Game.Tests.Visual
|
|
{
|
|
/// <summary>
|
|
/// A test scene wrapping the entire game,
|
|
/// including audio.
|
|
/// </summary>
|
|
[TestFixture]
|
|
public partial class TestSceneFlappyDonGame : FlappyDonTestScene
|
|
{
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AddGame(new FlappyDonGame());
|
|
}
|
|
}
|
|
}
|