⚙️Adding Configurations
Adding your own configurations to a plugin is pretty straightforward!
Configuration Class
public class MyPluginConfigurationClass
{
public int MyConfigurableInt { get; set; } = 10; // 10 will be the default value
}Simple Plugin Configuration
⚙️Simple Plugin ConfigurationAdvanced Configurations
⚙️Advanced ConfigurationsLast updated