stride/samples/Tutorials/CSharpIntermediateOld/CSharpIntermediate/CSharpIntermediate.Windows/CSharpIntermediateApp.cs

16 lines
257 B
C#
Raw Normal View History

2022-02-10 22:16:34 +00:00
using Stride.Engine;
namespace CSharpIntermediate
{
class CSharpIntermediateApp
{
static void Main(string[] args)
{
using (var game = new Game())
{
game.Run();
}
}
}
}