public LootPage() { InitializeComponent(); loot = App.game.GetCurrentLoot(); lblValue.Text = "Worth $" + loot.lootPoints.ToString(); lblName.Text = loot.FullDescription(); }
private void AddLootContent(int xCoord, int yCoord) { LootClass thisLoot = new LootClass(xCoord, yCoord); loot.Add(thisLoot); }