aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/KeyMapping.h
blob: 45be54a325a9f0a6d7a72a0edb3048ec8b62dae1 (plain)
1
2
3
4
5
6
7
8
9
10
#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);
};