Esempio n. 1
0
        protected override void Update(GameTime time)
        {
            if (EngineVariables.ShowFPS)
            {
                Counter.UpdateStart();
            }

            StackEngine.Update();

            if (EngineVariables.ShowFPS)
            {
                Counter.UpdateEnd();
            }

            if (SkipCutscene.Enabled)
            {
                SuppressDraw();
            }

            base.Update(time);
        }