stride/samples/Graphics/CustomEffect/CustomEffect.Windows/CustomEffectApp.cs
2018-08-02 01:55:33 +09:00

15 lines
244 B
C#

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