4jcraft/Minecraft.Client/Input/KeyMapping.h
2026-03-06 11:50:22 -06:00

10 lines
195 B
C++

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