mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
11 lines
176 B
C
11 lines
176 B
C
#ifndef GO_EBITEN_UI_COCOA_INPUT_H_
|
|
#define GO_EBITEN_UI_COCOA_INPUT_H_
|
|
|
|
typedef enum {
|
|
InputTypeMouseUp,
|
|
InputTypeMouseDragged,
|
|
InputTypeMouseDown,
|
|
} InputType;
|
|
|
|
#endif
|