Added ConfigEntry#video()

This commit is contained in:
Florian CUNY 2019-06-18 15:20:04 +02:00
parent 3ac89497ff
commit 0e4fdd307a

View File

@ -23,4 +23,11 @@ public @interface ConfigEntry {
* @return {@code true} if this config entry should be printed in the final config file, {@code false} otherwise.
*/
boolean hidden() default false;
/**
* Sets a link to a video explaining this configuration option.
* @return the link to a video explaining this configuration option.
* @since 1.5.3
*/
String video() default "";
}