mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
14 lines
237 B
C++
14 lines
237 B
C++
#ifndef KEY_MAPPING_HAIKU_H
|
|
#define KEY_MAPPING_HAIKU_H
|
|
|
|
class KeyMappingHaiku
|
|
{
|
|
KeyMappingHaiku() {};
|
|
|
|
public:
|
|
static unsigned int get_keysym(int32 raw_char, int32 key);
|
|
static unsigned int get_modifier_keysym(int32 key);
|
|
};
|
|
|
|
#endif
|