stride/samples/Graphics/CustomEffect/CustomEffect.Windows/CustomEffectApp.cs

16 lines
244 B
C#
Raw Normal View History

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