public Player()
 {
     m_health = m_maxHealth;
     m_location = new Location(DaveMatthewsWorld.EARTH, "Home");
     m_locationList = new List<Location>();
     m_locationList.Add(m_location);
     m_locationList.Add(new Location(DaveMatthewsWorld.NICAEA, "Daichi's House"));
     m_locationList.Add(new Location(DaveMatthewsWorld.NICAEA, "McDonald's"));
     m_inventory = new Inventory(10);
     m_inventory.Add(new Item(DaveMathewsItemType.ITEM_SPECIAL, "", "Money Wad", 1));
 }
 static void WriteDebugText()
 {
     Inventory testInv = new Inventory(100);
     testInv.Add(new Item(DaveMathewsItemType.ITEM_CUP, "", "iPhone", 4));
     testInv.Add(new Item(DaveMathewsItemType.ITEM_FOOD, "", "Money Wad", 8675309));
     testInv.Add(new Item(DaveMathewsItemType.ITEM_SPECIAL, "", "Pocket Pu$$y", 3));
     testInv.List();
 }