4jcraft/Minecraft.Client/Input/KeyMapping.cpp
2026-03-05 03:29:23 -05:00

8 lines
148 B
C++

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