mirror of
https://github.com/stride3d/stride
synced 2026-05-24 10:19:21 +00:00
13 lines
249 B
C#
13 lines
249 B
C#
namespace CSharpIntermediate
|
|
{
|
|
class CSharpIntermediateApp
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
using (var game = new Stride.Engine.Game())
|
|
{
|
|
game.Run();
|
|
}
|
|
}
|
|
}
|
|
}
|