Пример #1
0
        public InventoryPanel(string text, int width, int height) : base(width, height)
        {
            ConsoleBorders.DrawBar(0, 0, 0, height - 1, 179, this);

            ConsoleBorders.DrawBar(1, 0, width - 1, 0, 196, this);

            Print(2, 0, text);
        }
Пример #2
0
 public StatsConsole(int width, int height) : base(width, height)
 {
     // Draw the side bar
     ConsoleBorders.DrawBar(0, 0, 0, height - 1, 179, this);
 }