mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
MacOS: Embedded window support.
This commit is contained in:
parent
1cf573f44d
commit
00e1fdec2c
37 changed files with 3670 additions and 384 deletions
|
|
@ -32,6 +32,23 @@
|
|||
|
||||
#include "core/error/error_macros.h"
|
||||
|
||||
enum class InputEventType {
|
||||
INVALID = -1,
|
||||
KEY,
|
||||
MOUSE_BUTTON,
|
||||
MOUSE_MOTION,
|
||||
JOY_MOTION,
|
||||
JOY_BUTTON,
|
||||
SCREEN_TOUCH,
|
||||
SCREEN_DRAG,
|
||||
MAGNIFY_GESTURE,
|
||||
PAN_GESTURE,
|
||||
MIDI,
|
||||
SHORTCUT,
|
||||
ACTION,
|
||||
MAX,
|
||||
};
|
||||
|
||||
enum class HatDir {
|
||||
UP = 0,
|
||||
RIGHT = 1,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue