4jcraft/Minecraft.Client/Input/KeyMapping.h
2026-03-13 17:10:10 -05:00

9 lines
184 B
C++

#pragma once
// 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);
};