mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-15 04:22:28 +00:00
20 lines
380 B
C
20 lines
380 B
C
|
|
#ifndef APP_MAC_WINDOW_CALLBACKS_H
|
||
|
|
#define APP_MAC_WINDOW_CALLBACKS_H
|
||
|
|
|
||
|
|
#include <cstdint>
|
||
|
|
#include <AppKit/AppKit.h>
|
||
|
|
|
||
|
|
void MacOnKeyDown(NSEvent*);
|
||
|
|
|
||
|
|
void MacOnKeyUp(NSEvent*);
|
||
|
|
|
||
|
|
void MacOnMouseDown(int16_t, int32_t, int32_t);
|
||
|
|
|
||
|
|
void MacOnMouseMoved(int32_t, int32_t);
|
||
|
|
|
||
|
|
void MacOnMouseUp(int16_t, int32_t, int32_t);
|
||
|
|
|
||
|
|
void MacOnResized(int32_t width, int32_t height, bool a3);
|
||
|
|
|
||
|
|
#endif
|