mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 02:53:39 +00:00
7 lines
162 B
C++
7 lines
162 B
C++
#include "../Platform/stdafx.h"
|
|
#include "KeyMapping.h"
|
|
|
|
KeyMapping::KeyMapping(const std::wstring& name, int key) {
|
|
this->name = name;
|
|
this->key = key;
|
|
} |