mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 05:53:38 +00:00
8 lines
153 B
C++
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;
|
|
} |