mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 06:13:41 +00:00
10 lines
195 B
C++
10 lines
195 B
C++
#pragma once
|
|
using namespace std;
|
|
// 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);
|
|
}; |