KinPortal/Game/Program.cs
2020-05-15 12:18:51 +02:00

16 lines
250 B
C#
Executable File

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
}