mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-08-02 15:42:37 +00:00
chore: format Minecraft.Client
This commit is contained in:
@@ -1,20 +1,17 @@
|
||||
#pragma once
|
||||
|
||||
|
||||
|
||||
class WstringLookup
|
||||
{
|
||||
class WstringLookup {
|
||||
private:
|
||||
unsigned int numIDs;
|
||||
std::unordered_map<std::wstring, unsigned int> str2int;
|
||||
std::vector<std::wstring> int2str;
|
||||
unsigned int numIDs;
|
||||
std::unordered_map<std::wstring, unsigned int> str2int;
|
||||
std::vector<std::wstring> int2str;
|
||||
|
||||
public:
|
||||
WstringLookup();
|
||||
WstringLookup();
|
||||
|
||||
std::wstring lookup(unsigned int id);
|
||||
|
||||
unsigned int lookup(std::wstring);
|
||||
std::wstring lookup(unsigned int id);
|
||||
|
||||
void getTable(std::wstring **lookup, unsigned int *len);
|
||||
unsigned int lookup(std::wstring);
|
||||
|
||||
void getTable(std::wstring** lookup, unsigned int* len);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user