コード例 #1
0
ファイル: HandDefinitionModel.cs プロジェクト: ddksaku/rzr
 public HandDefinition GetDef()
 {
     HandDefinition ret = new HandDefinition();
     ret.HandDef = this.Definition;
     ret.Value = this.Value;
     ret.Description = this.Description;
     return ret;
 }
コード例 #2
0
ファイル: HandDefinitionModel.cs プロジェクト: ddksaku/rzr
 public HandDefinitionModel(HandDefinition def)
 {
     this.Definition = def.HandDef;
     this.Value = def.Value;
     this.Description = def.Description;
 }