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