コード例 #1
0
ファイル: Sandstorm.cs プロジェクト: saschaarthur/sandstorm
 public Sandstorm(SandstormEditor editor, SandstormBeamer beamer, Kinect kinectSytem)
 {
     _kinectSystem = kinectSytem;
     _editor = editor;
     _beamer = beamer;
     Mouse.WindowHandle = _editor.Handle;
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: saschaarthur/sandstorm
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main(string[] args)
        {
            SandstormEditor editor = new SandstormEditor();
            editor.Disposed += new EventHandler(form_Disposed);

            SandstormBeamer beamer = new SandstormBeamer();
            beamer.Disposed += new EventHandler(form_Disposed);

            kinectSystem = new Kinect();

            using (game = new Sandstorm(editor, beamer, kinectSystem))
            {
                game.Run();
            }
        }