forked from khmMinecraftProjects/UseLessMod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathES.java
More file actions
28 lines (22 loc) · 668 Bytes
/
Copy pathES.java
File metadata and controls
28 lines (22 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package UselessMod.Lang;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Enumeration;
import java.util.Hashtable;
import org.apache.commons.lang3.tuple.Pair;
import UselessMod.Configuracion.Datos;
public class ES {
static Hashtable<Integer, String> names= new
Hashtable<Integer, String>();
public static void inicializa(){
names.put(Datos.idBaston, "Baston de moises");
names.put(Datos.idTransparente, "Null");
names.put(Datos.idAmbar, "Ambar");
names.put(Datos.idBomba, "Bomba de Ambar");
names.put(Datos.idPie, "Pie de Jesus");
}
public static Hashtable<Integer, String> getNames(){
inicializa();
return names;
}
}