mirror of
https://github.com/Oth3r/Sit.git
synced 2025-09-19 16:03:22 +02:00
16 lines
404 B
Java
16 lines
404 B
Java
package one.oth3r.sit.utl;
|
|
|
|
import one.oth3r.otterlib.chat.CTxT;
|
|
import one.oth3r.sit.file.FileData;
|
|
|
|
import java.awt.*;
|
|
|
|
public class Chat {
|
|
public static CTxT tag() {
|
|
return new CTxT("Sit!").btn(true).color(Color.decode("#c400ff")).append(" ");
|
|
}
|
|
|
|
public static CTxT lang(String key, Object... args) {
|
|
return FileData.getLangReader().dynamicTranslatable(key, args);
|
|
}
|
|
}
|