Knot3.Framework.Widgets.ConfirmDialog.SubComponents C# (CSharp) Méthode

SubComponents() public méthode

public SubComponents ( GameTime time ) : IEnumerable
time Microsoft.Xna.Framework.GameTime
Résultat IEnumerable
        public override IEnumerable<IScreenComponent> SubComponents(GameTime time)
        {
            foreach (DrawableScreenComponent component in base.SubComponents (time)) {
                yield return component;
            }
            yield return menu;
        }