4jcraft/Minecraft.Client/Input/KeyMapping.cpp
2026-03-06 11:50:22 -06:00

8 lines
153 B
C++

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