-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhashcodes.java
executable file
·31 lines (31 loc) · 2.15 KB
/
hashcodes.java
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
29
30
31
class main {
public static void main(String[] args){
System.out.println("const Int32 Barbecue = " + "Barbecue".hashCode() + ";");
System.out.println("const Int32 Barricade = " + "Barricade".hashCode() + ";");
System.out.println("const Int32 Crate = " + "Crate".hashCode() + ";");
System.out.println("const Int32 Curtain = " + "Curtain".hashCode() + ";");
System.out.println("const Int32 DeadBody = " + "DeadBody".hashCode() + ";");
System.out.println("const Int32 Door = " + "Door".hashCode() + ";");
System.out.println("const Int32 Fire = " + "Fire".hashCode() + ";");
System.out.println("const Int32 Fireplace = " + "Fireplace".hashCode() + ";");
System.out.println("const Int32 IsoGenerator = " + "IsoGenerator".hashCode() + ";");
System.out.println("const Int32 IsoObject = " + "IsoObject".hashCode() + ";");
System.out.println("const Int32 IsoTrap = " + "IsoTrap".hashCode() + ";");
System.out.println("const Int32 Jukebox = " + "Jukebox".hashCode() + ";");
System.out.println("const Int32 LightSwitch = " + "LightSwitch".hashCode() + ";");
System.out.println("const Int32 MolotovCocktail = " + "MolotovCocktail".hashCode() + ";");
System.out.println("const Int32 Player = " + "Player".hashCode() + ";");
System.out.println("const Int32 Pushable = " + "Pushable".hashCode() + ";");
System.out.println("const Int32 Radio = " + "Radio".hashCode() + ";");
System.out.println("const Int32 Stove = " + "Stove".hashCode() + ";");
System.out.println("const Int32 Survivor = " + "Survivor".hashCode() + ";");
System.out.println("const Int32 Thumpable = " + "Thumpable".hashCode() + ";");
System.out.println("const Int32 Tree = " + "Tree".hashCode() + ";");
System.out.println("const Int32 WheelieBin = " + "WheelieBin".hashCode() + ";");
System.out.println("const Int32 Window = " + "Window".hashCode() + ";");
System.out.println("const Int32 WoodenWall = " + "WoodenWall".hashCode() + ";");
System.out.println("const Int32 WorldInventoryItem = " + "WorldInventoryItem".hashCode() + ";");
System.out.println("const Int32 Zombie = " + "Zombie".hashCode() + ";");
System.out.println("const Int32 Television = " + "Television".hashCode() + ";");
}
}