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