mirror of
https://github.com/Aust1n46/VentureChat.git
synced 2025-05-23 10:39:05 +00:00
23 lines
526 B
Java
23 lines
526 B
Java
package mineverse.Aust1n46.chat.localization;
|
|
|
|
import mineverse.Aust1n46.chat.utilities.Format;
|
|
|
|
/**
|
|
* Messages internal to the plugin
|
|
*/
|
|
public enum InternalMessage {
|
|
EMPTY_STRING(""),
|
|
VENTURECHAT_AUTHOR("&6Written by Aust1n46"),
|
|
VENTURECHAT_VERSION("&6VentureChat Version: {version}");
|
|
|
|
private final String message;
|
|
|
|
InternalMessage(String message) {
|
|
this.message = message;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return Format.FormatStringAll(this.message);
|
|
}
|
|
} |