16 lines
250 B
C#
Executable File
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
|
|
}
|
|
|