public Skin(string _name, int _rarity, float _min, float _max, string _collection) { name = _name; rarity = _rarity; minFloat = _min; maxFloat = _max; collection = _collection; prices = new SkinPrices(); }
public Skin(string q) { string[] args = q.Split(','); name = args[0]; rarity = Int32.Parse(args[1]); minFloat = float.Parse(args[2]); maxFloat = float.Parse(args[3]); collection = args[4]; prices = new SkinPrices(); }
public Skin() { prices = new SkinPrices(); }