Files
osu-framework/osu.Framework.Templates/templates/template-flappy/FlappyDon.Game.Tests/Visual/TestSceneFlappyDonGame.cs
2025-01-22 08:43:36 +01:00

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());
}
}
}