-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChunkCoordIntPair.java
More file actions
34 lines (27 loc) · 905 Bytes
/
ChunkCoordIntPair.java
File metadata and controls
34 lines (27 loc) · 905 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
29
30
31
32
33
34
package net.minecraft.src;
// Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://www.kpdus.com/jad.html
// Decompiler options: packimports(3) braces deadcode
public class ChunkCoordIntPair
{
public ChunkCoordIntPair(int i, int j)
{
chunkXPos = i;
chunkZPos = j;
}
public static int func_22011_a(int i, int j)
{
return (i >= 0 ? 0 : 0x80000000) | (i & 0x7fff) << 16 | (j >= 0 ? 0 : 0x8000) | j & 0x7fff;
}
public int hashCode()
{
return func_22011_a(chunkXPos, chunkZPos);
}
public boolean equals(Object obj)
{
ChunkCoordIntPair chunkcoordintpair = (ChunkCoordIntPair)obj;
return chunkcoordintpair.chunkXPos == chunkXPos && chunkcoordintpair.chunkZPos == chunkZPos;
}
public final int chunkXPos;
public final int chunkZPos;
}