Example #1
0
 public Avatar.Builder AddInventory(Item.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.inventory_.Add(builderForValue.Build());
     return(this);
 }
Example #2
0
 public Avatar.Builder AddWearable(Item.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.wearable_.Add(builderForValue.Build());
     return(this);
 }
Example #3
0
 public Avatar.Builder SetWearable(int index, Item.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.wearable_.set_Item(index, builderForValue.Build());
     return(this);
 }