示例#1
0
 public void AddOutfit(Outfit outfit)
 {
     AddBytes(outfit.ToByteArray());
 }
示例#2
0
 public bool Equals(Outfit outfit)
 {
     return LookType == outfit.LookType && Head == outfit.Head && Body == outfit.Body
         && Legs == outfit.Legs && Feet == outfit.Feet && Addons == outfit.Addons ||
         LookType == outfit.LookType && LookItem == outfit.LookItem;
 }
示例#3
0
 public void SetOutfit(Outfit outfit)
 {
     this.outfit = outfit;
 }