SadRogueSharp.Consoles.MapConsole.Render C# (CSharp) Method

Render() public method

public Render ( ) : void
return void
        public override void Render()
        {
            base.Render();

            // Normally only the console data is rendered through this call, but after
            // that has finished, we want to render our entities on top of that.
            foreach (var entity in entities)
                entity.Render();
        }