4jcraft/Minecraft.Client/Input/KeyMapping.cpp

8 lines
156 B
C++

#include "../Platform/stdafx.h"
#include "KeyMapping.h"
KeyMapping::KeyMapping(const std::wstring& name, int key)
{
this->name = name;
this->key = key;
}