Example #1
0
 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();
 }
Example #2
0
 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();
 }
Example #3
0
 public Skin()
 {
     prices = new SkinPrices();
 }