public Weapon(EquipmentBaseViewModel from) : base(from) { this.Color = from.Color; this.Scale = from.Scale; this.ModelSet = from.ModelSet; }
public override void Write(EquipmentBaseViewModel to) { to.Color = this.Color; to.Scale = this.Scale; to.ModelSet = this.ModelSet; base.Write(to); }
public override void Read(EquipmentBaseViewModel from) { this.Color = from.Color; this.Scale = from.Scale; this.ModelSet = from.ModelSet; base.Read(from); }
public virtual void Write(EquipmentBaseViewModel to) { to.ModelBase = this.ModelBase; to.ModelVariant = this.ModelVariant; to.DyeId = this.DyeId; }
public Item(EquipmentBaseViewModel from) { this.ModelBase = from.ModelBase; this.ModelVariant = from.ModelVariant; this.DyeId = from.DyeId; }
public virtual void Read(EquipmentBaseViewModel from) { this.ModelBase = from.ModelBase; this.ModelVariant = from.ModelVariant; this.DyeId = from.DyeId; }