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

16 lines
245 B
C#
Raw Normal View History

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