4jcraft/Minecraft.Client/Input/KeyMapping.h
2026-03-05 03:29:23 -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);
};