mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 13:03:37 +00:00
6 lines
129 B
C++
6 lines
129 B
C++
#include "KeyMapping.h"
|
|
|
|
KeyMapping::KeyMapping(const std::string& name, int key) {
|
|
this->name = name;
|
|
this->key = key;
|
|
} |