public ContentItem CreateItem(string character, string stat)
    {
        ContentItem newItem = Instantiate(contentItem, transform);

        newItem.saving         = saving;
        newItem.characterAdder = characterAdder;

        themeSetter.AddImage(newItem.image);
        newItem.characterText.text = character;
        themeSetter.AddText(newItem.characterText);
        newItem.statText.text = stat;
        themeSetter.AddText(newItem.statText);

        themeSetter.AddHeavyImage(newItem.outlineImage);

        themeSetter.AddImage(newItem.editImage);
        themeSetter.AddButton(newItem.editButton);
        themeSetter.AddText(newItem.editText);

        themeSetter.AddImage(newItem.deleteImage);
        themeSetter.AddButton(newItem.deleteButton);
        themeSetter.AddText(newItem.deleteText);

        items.Add(newItem);

        return(newItem);
    }