// Swap to the next LowerBody. public void NextLowerBody() { // Retrieve next. this._lowerBody = this._wardrobe.GetNextLowerBody(); // Update UI. UpdateWardrobeUI(Resource.Id.LowerView, Resource.Id.AvatarLowerBody, this._lowerBody); }
// Add a new LowerBody. private void AddLowerBody(string name, int imagePath, int id) { var item = new WardrobeItem(name, imagePath, id); this.LowerBodies.Add(item); }
private void UpdateWardrobeUI(int resourceId, int textid, WardrobeItem item) { UpdateWardrobeItemText(textid, item.Name); UpdateWardrobeItemImage(resourceId, item.Mipmap); }
// Add a new Topper. private void AddTopper(string name, int imagePath, int id) { var item = new WardrobeItem(name, imagePath, id); this.Toppers.Add(item); }