12 lines
196 B
C
12 lines
196 B
C
#pragma once
|
|
|
|
extern "C" {
|
|
void input_set_is_right_click(int val);
|
|
void input_set_is_ctrl(bool val);
|
|
|
|
enum {
|
|
#define KEY(name, value) MC_KEY_##name = (value),
|
|
#include "key-list.h"
|
|
#undef KEY
|
|
};
|
|
} |