Example #1
0
        private StandardDisplay BuildMenu(Creature wearer, UseItemCallbackSafe <ArmorBase> postItemCallback)
        {
            var display = new StandardDisplay();

            display.OutputText(WearBimboSkirt(wearer));

            display.AddButtonWithToolTip(0, GlobalStrings.ENABLE(), () => DoEquip(wearer, postItemCallback, true), BimboText(true), BimboTitle(true));
            display.AddButtonWithToolTip(1, GlobalStrings.DISABLE(), () => DoEquip(wearer, postItemCallback, false), BimboText(false), BimboTitle(false));

            return(display);
        }