public HUDEquipped(PlayerHUD parent)
            : base()
        {
            this.font = GameManager.TheGameManager.Content.Load<SpriteFont>(Path.Fonts + "Moire18");

            this.Area = new Rectangle(
                parent.outerRect.X + 350,
                parent.outerRect.Y + 55,
                200,
                80);

            Color = Color.Bisque;
        }
        public HUDPortrait(PlayerHUD parent)
            : base()
        {
            texture = GameManager.TheGameManager.Content.Load<Texture2D>(Path.Textures.Portrait + "regnan");

            this.Area = new Rectangle(
                parent.outerRect.X + 8,
                parent.outerRect.Y + 8,
                88,
                88);
        }