コード例 #1
0
ファイル: Item.cs プロジェクト: usuket/Works
 public Item(Actor other)
     : base(other)
 {
     GetItemData();
 }
コード例 #2
0
ファイル: Actor.cs プロジェクト: usuket/Works
 public Actor(Actor other)
 {
     this.address = other.address;
     this.d3 = other.d3;
     CachedID = ActorID;
 }
コード例 #3
0
ファイル: ACDActor.cs プロジェクト: jujum4n/D3CRYPTGOLDFARM
 public ACDActor(Actor other)
     : base(other)
 {
     CachedACDID = ACDID;
     GetACDAddress();
 }
コード例 #4
0
ファイル: Actor.cs プロジェクト: jujum4n/D3CRYPTGOLDFARM
 public Actor(Actor other)
 {
     this.address = other.address;
     this.reader = other.reader;
     CachedID = ActorID;
 }