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

Update() public method

public Update ( ) : void
return void
        public override void Update()
        {
            // Normally just the console data for this console is "updated" each frame,
            // but we want to also update all entities.
            foreach (var entity in entities)
                entity.Update();

            base.Update();
        }