Esempio n. 1
0
 public Avatar.Builder AddInventory(Item.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.inventory_.Add(builderForValue.Build());
     return(this);
 }
Esempio n. 2
0
 public Avatar.Builder AddWearable(Item.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.wearable_.Add(builderForValue.Build());
     return(this);
 }
Esempio n. 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);
 }