Example #1
0
 public Item(string name, Makeup.DefaultMakeup type)
 {
     this.Name = name;
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }
Example #2
0
 public Item(int id, string name, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Name = name;
     this.Type = type;
 }
Example #3
0
 public Item(int id, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Type = type;
 }
Example #4
0
 public Item(Makeup.DefaultMakeup type)
 {
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }