mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-24 04:23:36 +00:00
11 lines
201 B
C++
11 lines
201 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
// 4J Stu - Not updated to 1.8.2 as we don't use this
|
|
class KeyMapping {
|
|
public:
|
|
std::string name;
|
|
int key;
|
|
KeyMapping(const std::string& name, int key);
|
|
}; |