mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 09:53:48 +00:00
10 lines
175 B
C++
10 lines
175 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);
|
|
}; |