2011-11-09 12:31:32 +00:00
|
|
|
using System;
|
2011-12-06 09:11:26 +00:00
|
|
|
using ANX.Framework.NonXNA;
|
2011-11-09 12:31:32 +00:00
|
|
|
|
|
|
|
namespace Kinect
|
|
|
|
{
|
|
|
|
#if WINDOWS || XBOX
|
|
|
|
static class Program
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Der Haupteinstiegspunkt für die Anwendung.
|
|
|
|
/// </summary>
|
|
|
|
static void Main(string[] args)
|
|
|
|
{
|
|
|
|
using (Game1 game = new Game1())
|
|
|
|
{
|
|
|
|
game.Run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|