예제 #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;
 }