stride/samples/Graphics/AnimatedModel/AnimatedModel.Windows/AnimatedModelApp.cs

16 lines
247 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 AnimatedModel
{
class AnimatedModelApp
{
static void Main(string[] args)
{
using (var game = new Game())
{
game.Run();
}
}
}
}