stride/samples/Tutorials/CSharpIntermediateOld/CSharpIntermediate/CSharpIntermediate.Windows/CSharpIntermediateApp.cs
2022-02-10 23:16:34 +01:00

15 lines
257 B
C#

using Stride.Engine;
namespace CSharpIntermediate
{
class CSharpIntermediateApp
{
static void Main(string[] args)
{
using (var game = new Game())
{
game.Run();
}
}
}
}