Beispiel #1
0
        public void Update(float dt)
        {
            var args = new UIUpdateEventArgs(dt);

            foreach (var uiComponent in Components)
            {
                uiComponent.Update(args);
            }

            var handler = OnUpdate;

            handler?.Invoke(this, args);
        }
Beispiel #2
0
 public override void Update(UIUpdateEventArgs args)
 {
 }
Beispiel #3
0
 public abstract void Update(UIUpdateEventArgs args);