Example #1
0
        public LootPage()
        {
            InitializeComponent();
            loot = App.game.GetCurrentLoot();

            lblValue.Text = "Worth $" + loot.lootPoints.ToString();
            lblName.Text  = loot.FullDescription();
        }
Example #2
0
        private void AddLootContent(int xCoord, int yCoord)
        {
            LootClass thisLoot = new LootClass(xCoord, yCoord);

            loot.Add(thisLoot);
        }