Table of Contents
ModSetting for adding a button in the settings that performs a given action, with the setting just tracking
the number of times that the button has been pressed.
public class ModSettingButton : BTD_Mod_Helper.Api.ModOptions.ModSetting
Inheritance System.Object ModSetting ModSettingButton
Initializes a new instance of the System.Object class.
public ModSettingButton();
The action that this button performs
public Action action;
The sprite to use for the button, BlueBtnLong by default
public string buttonSprite;
The text that will appear on the button, "Dew It" by default
public string buttonText;
Action to modify the ModHelperButton after it's created
public Action<ModHelperButton> modifyButton;