mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Add basic implementation of VisualTest framework for osu! project.
Comes with one complimentary test.
This commit is contained in:
20
osu.Desktop.VisualTests/Program.cs
Normal file
20
osu.Desktop.VisualTests/Program.cs
Normal file
@ -0,0 +1,20 @@
|
||||
// Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
||||
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu-framework/master/LICENCE
|
||||
|
||||
using System;
|
||||
using osu.Framework.Desktop;
|
||||
using osu.Framework.OS;
|
||||
|
||||
namespace osu.Framework.VisualTests
|
||||
{
|
||||
public static class Program
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
BasicGameHost host = Host.GetSuitableHost();
|
||||
host.Load(new VisualTestGame());
|
||||
host.Run();
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user