KinPortal/Game/Program.cs

16 lines
250 B
C#
Raw Normal View History

2020-05-15 12:18:51 +02:00
using System;
using Microsoft.Kinect.Toolkit.Interaction;
namespace KinPortal {
#if WINDOWS || XBOX
static class Program {
static void Main(string[] args) {
using (Game game = new Game()) {
game.Run();
}
}
}
#endif
}