TextWidget MakeLabel(int x, int y, string text)
        {
            TextWidget widget = ChatTextWidget.Create(game, x, y, text,
                                                      Anchor.Centre, Anchor.Centre, regularFont);
            int start = game.Width / 2 - 110;

            widget.MoveTo(start - widget.Width, widget.Y);
            widget.Colour = new FastColour(224, 224, 224);
            return(widget);
        }