Knot3.Game.Widgets.TextInputDialog.SubComponents C# (CSharp) Method

SubComponents() public method

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