Files
LegacyMultiplayerProject/Minecraft.Client/KeyMapping.cpp
DrPerkyLegit b3e825ef9c Initial commit
2026-06-23 01:07:42 -04:00

8 lines
139 B
C++

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