private void UiUpdate() { if (CurrentGameStatus == GameStatus.Running) { DrawComponent.Draw(Map); } else { DrawComponent.DrawCells(new List <TextCell> { new TextCell("NOT Running", Map) }); } }