aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/KeyMapping.cpp
blob: 9e9304125ef1d15aa7567fe1204f2fbaf6a82856 (plain)
1
2
3
4
5
6
7
8
#include "stdafx.h"
#include "KeyMapping.h"

KeyMapping::KeyMapping(const wstring& name, int key)
{
	this->name = name;
	this->key = key;
}