stride/samples/Particles/ParticlesSample/ParticlesSample.Windows/ParticlesSampleApp.cs

16 lines
250 B
C#
Raw Normal View History

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