public SpecialInputWidget(Game game, Font font, InputWidget input) : base(game)
 {
     HorizontalAnchor = Anchor.Min;
     VerticalAnchor   = Anchor.Max;
     this.font        = font;
     this.input       = input;
     Active           = false;
 }
 public SpecialInputWidget(Game game, Font font, InputWidget input) : base(game)
 {
     HorizontalAnchor = Anchor.LeftOrTop;
     VerticalAnchor   = Anchor.BottomOrRight;
     this.font        = font;
     this.input       = input;
     Active           = false;
 }