Castle.GameMenuConsole.PrintInstructions C# (CSharp) Method

PrintInstructions() private method

private PrintInstructions ( ) : void
return void
        private void PrintInstructions()
        {
            // Clear screen
            for (int x = 0; x < 40; x++)
            {
                for (int y = 0; y < 23; y++)
                {
                    SetGlyph(x, y, 0, Color.White);
                }
            }
            Print(0, 2, "   You are trapped in a deserted Castle", Color.White);
            Print(0, 3, "and you must escape. It is rumored that", Color.White);
            Print(0, 4, "the castle is  full of treasures.  Can", Color.White);
            Print(0, 5, "you find them all?", Color.White);
            Print(0, 7, " Use the cursor keypad to move your man", Color.White);
            Print(0, 8, "around the rooms.  To pick up a visible", Color.White);
            Print(0, 9, "item,  just run into it.  To pick up an", Color.White);
            Print(0, 10, "item not displayed  on  the screen, use", Color.White);
            Print(0, 11, "the command  GET.  To  attack  monsters", Color.White);
            Print(0, 12, "just  run  into  them,  but only if you", Color.White);
            Print(0, 13, "have a weapon.The computer accepts most", Color.White);
            Print(0, 14, "two word commands. There are 83 rooms &", Color.White);
            Print(0, 15, "13 treaures.", Color.White);
            Print(0, 18, " one hint:Look at everything carefully!", Color.White);
        }