hyades.Application.LoadContent C# (CSharp) 메소드

LoadContent() 보호된 메소드

protected LoadContent ( ) : void
리턴 void
        protected override void LoadContent()
        {
            Resources.Load(content);

            input = new MultiInputDevice(PlayerIndex.One);
            //input = new GamePadDevice(PlayerIndex.One);

            game = new Hyades(input);
            screenmanager = new ScreenManager(input);
            gamescreen = new GameScreen(game, screenmanager);
            screenmanager.FadeIn(gamescreen);
            Title logo = new Title(gamescreen, screenmanager);
            screenmanager.FadeIn(logo);
            /*

            editor = new Editor(input);
            screenmanager = new ScreenManager(input);
            editorscreen = new EditorScreen(editor, screenmanager);
            screenmanager.FadeIn(editorscreen);
            */
        }