Beispiel #1
0
        public void Update(float totalSeconds, float frameSeconds)
        {
            if (m_QueuedModel != null)
            {
                ActivateQueuedModel();
            }
            InputManager input = ServiceRegistry.GetService <InputManager>();

            m_Model.Update(totalSeconds, frameSeconds);
            m_Model.GetController().Update(frameSeconds, input);
        }
Beispiel #2
0
 public void Update(GameTime gameTime)
 {
     AModel.Update();
 }