mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-25 02:40:46 +00:00
udjfjdkd
This commit is contained in:
@@ -28,13 +28,12 @@ public:
|
||||
ChunkPos & operator= (const ChunkPos & other) { x = other.x; z = other.z; return *this; }
|
||||
};
|
||||
|
||||
typedef struct
|
||||
struct ChunkPosKeyHash
|
||||
{
|
||||
__int64 operator() (const ChunkPos &k) const { return ChunkPos::hash_fnct(k); }
|
||||
};
|
||||
|
||||
} ChunkPosKeyHash;
|
||||
|
||||
typedef struct
|
||||
struct ChunkPosKeyEq
|
||||
{
|
||||
bool operator() (const ChunkPos &x, const ChunkPos &y) const { return ChunkPos::eq_test(x, y); }
|
||||
} ChunkPosKeyEq;
|
||||
};
|
||||
Reference in New Issue
Block a user