mirror of
https://github.com/songoda/EpicHeads.git
synced 2024-11-10 21:02:48 +01:00
83a77b3578
Replaced localization system with mine.
14 lines
284 B
Java
14 lines
284 B
Java
package com.songoda.epicheads;
|
|
|
|
public class References {
|
|
|
|
private String prefix;
|
|
|
|
public References() {
|
|
prefix = EpicHeads.getInstance().getLocale().getMessage("general.nametag.prefix") + " ";
|
|
}
|
|
|
|
public String getPrefix() {
|
|
return this.prefix;
|
|
}
|
|
} |