コード例 #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++;
 }