DeenGames.Utils.Tower.Core.TowerScreen.RemoveText C# (CSharp) Method

RemoveText() private method

Remove the text from the screen. Note that if you have a reference to this text, that still needs to be set to null.
private RemoveText ( Text text ) : void
text FlatRedBall.Graphics.Text
return void
        internal void RemoveText(Text text)
        {
            TextManager.RemoveText(text);
            this.mTexts.Remove(text);
        }