예제 #1
0
파일: Demo.cs 프로젝트: sytelus/StartTrek
        public Demo()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            Window.Title    = "XNA 4.0 Earth Demo";
            IsMouseVisible  = true;
            IsFixedTimeStep = false;

            starfieldComponent = new StarfieldComponent(this);
            Components.Add(starfieldComponent);
        }
예제 #2
0
파일: Demo.cs 프로젝트: kamal-kr/StartTrek
        public Demo()
        {
            graphics = new GraphicsDeviceManager(this);
            Content.RootDirectory = "Content";

            Window.Title = "XNA 4.0 Earth Demo";
            IsMouseVisible = true;
            IsFixedTimeStep = false;

            starfieldComponent = new StarfieldComponent(this);
            Components.Add(starfieldComponent);
        }