stride/samples/UI/GameMenu/GameMenu.Windows/GameMenuApp.cs

16 lines
236 B
C#
Raw Normal View History

2018-06-19 09:06:54 +00:00
using Xenko.Engine;
namespace GameMenu
{
class GameMenuApp
{
static void Main(string[] args)
{
using (var game = new Game())
{
game.Run();
}
}
}
}