示例#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
 public ACDActor(Actor other)
     : base(other)
 {
     CachedACDID = ACDID;
     GetACDAddress();
 }
示例#4
0
 public Actor(Actor other)
 {
     this.address = other.address;
     this.reader = other.reader;
     CachedID = ActorID;
 }