4jcraft/targets/minecraft/client/KeyMapping.cpp
2026-04-01 13:27:58 -05:00

6 lines
130 B
C++

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