mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-25 12:53:36 +00:00
9 lines
184 B
C++
9 lines
184 B
C++
#pragma once
|
|
|
|
// 4J Stu - Not updated to 1.8.2 as we don't use this
|
|
class KeyMapping {
|
|
public:
|
|
std::wstring name;
|
|
int key;
|
|
KeyMapping(const std::wstring& name, int key);
|
|
}; |