stride/samples/Graphics/CustomEffect/CustomEffect.Windows/CustomEffectApp.cs
2020-04-14 16:37:41 +02:00

15 lines
245 B
C#

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