MonoGameUi.Control.Update C# (CSharp) Method

Update() public method

public Update ( GameTime gameTime ) : void
gameTime GameTime
return void
        public void Update(GameTime gameTime)
        {
            HandleTransitions(gameTime);
            OnUpdate(gameTime);
            foreach (var child in Children.AgainstZOrdner())
                child.Update(gameTime);
        }