ProcessGame() 공개 메소드

public ProcessGame ( float frameDeltaTime ) : void
frameDeltaTime float
리턴 void
예제 #1
0
        void Gorgon_Idle(object sender, FrameEventArgs e)
        {
            try
            {
                Gorgon.Screen.Clear(Drawing.Color.Black);
                Gorgon.Screen.BeginDrawing();

                gameMain.ProcessGame(e.FrameDeltaTime);

                Gorgon.Screen.EndDrawing();
            }
            catch (Exception exception)
            {
                HandleException(exception);
            }
        }