mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-09-23 12:23:06 +00:00
udjfjdkd
This commit is contained in:
@@ -14,14 +14,13 @@ public:
|
||||
static bool eq_test(const TilePos &x, const TilePos &y);
|
||||
};
|
||||
|
||||
typedef struct
|
||||
struct TilePosKeyHash
|
||||
{
|
||||
int operator() (const TilePos &k) const { return TilePos::hash_fnct (k); }
|
||||
};
|
||||
|
||||
} TilePosKeyHash;
|
||||
|
||||
typedef struct
|
||||
struct TilePosKeyEq
|
||||
{
|
||||
bool operator() (const TilePos &x, const TilePos &y) const { return TilePos::eq_test (x, y); }
|
||||
} TilePosKeyEq;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user