mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2025-02-06 01:43:04 +08:00
22 lines
571 B
Java
22 lines
571 B
Java
package emu.grasscutter.plugin;
|
|
|
|
/**
|
|
* The data contained in the plugin's `plugin.json` file.
|
|
*/
|
|
public final class PluginConfig {
|
|
public String name, description, version;
|
|
public String mainClass;
|
|
public String[] authors;
|
|
public String[] loadAfter;
|
|
|
|
/**
|
|
* Attempts to validate this config instance.
|
|
*
|
|
* @return True if the config is valid, false otherwise.
|
|
*/
|
|
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
|
public boolean validate() {
|
|
return name != null && description != null && mainClass != null;
|
|
}
|
|
}
|