mirror of
https://github.com/songoda/EpicHeads.git
synced 2024-11-13 06:06:36 +01:00
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;
|
||
|
}
|
||
|
}
|