Files
MinecraftCommunityEdition-c…/Minecraft.Client/KeyMapping.h
LazyByteDev b40d5e9d01 src stuff
2026-03-02 03:31:00 -05:00

10 lines
185 B
C++

#pragma once
using namespace std;
// 4J Stu - Not updated to 1.8.2 as we don't use this
class KeyMapping
{
public:
wstring name;
int key;
KeyMapping(const wstring& name, int key);
};