mirror of
https://github.com/portable-lce/portable-lce.git
synced 2026-07-18 17:38:13 +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;
|
|
} |