示例#1
0
文件: Item.cs 项目: enchman/workboard
 public Item(string name, Makeup.DefaultMakeup type)
 {
     this.Name = name;
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }
示例#2
0
文件: Item.cs 项目: enchman/workboard
 public Item(int id, string name, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Name = name;
     this.Type = type;
 }
示例#3
0
文件: Item.cs 项目: enchman/workboard
 public Item(int id, Makeup.DefaultMakeup type)
 {
     this.Id = id;
     this.Type = type;
 }
示例#4
0
文件: Item.cs 项目: enchman/workboard
 public Item(Makeup.DefaultMakeup type)
 {
     this.Type = type;
     this.Id = currentId;
     currentId++;
 }