public static ItemInfo GetFromItem(Item item)
            {
                ItemInfo r = new ItemInfo();

                r.name        = item.name;
                r.description = item.description;
                r.gameObject  = GameObjectInfo.GetFromGameObject(item.gameObject);
                return(r);
            }