//-----------------------------------------------------------------------------
 // Constructors
 //-----------------------------------------------------------------------------
 public InventoryMenu(GameManager gameManager)
     : base(gameManager)
 {
     this.previousMenu	= null;
     this.nextMenu		= null;
     this.drawHUD		= true;
     this.description	= new LetterString();
     this.textPosition	= 0;
     this.textTimer		= 0;
     this.textStart		= 0;
     this.inSubMenu		= false;
 }
Exemple #2
0
        //-----------------------------------------------------------------------------
        // Constructors
        //-----------------------------------------------------------------------------

        public InventoryMenu(GameManager gameManager) :
            base(gameManager)
        {
            this.previousMenu = null;
            this.nextMenu     = null;
            this.drawHUD      = true;
            this.description  = new LetterString();
            this.textPosition = 0;
            this.textTimer    = 0;
            this.textStart    = 0;
            this.inSubMenu    = false;
        }