mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-13 03:32:28 +00:00
chore(style): clean up function declarations in app
This commit is contained in:
parent
5efdfe3d22
commit
b03eef7b1d
3 changed files with 14 additions and 14 deletions
|
|
@ -4,15 +4,15 @@
|
|||
#include <cstdint>
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
void MacOnKeyDown(NSEvent*);
|
||||
void MacOnKeyDown(NSEvent* event);
|
||||
|
||||
void MacOnKeyUp(NSEvent*);
|
||||
void MacOnKeyUp(NSEvent* event);
|
||||
|
||||
void MacOnMouseDown(int16_t, int32_t, int32_t);
|
||||
void MacOnMouseDown(int16_t button, int32_t x, int32_t y);
|
||||
|
||||
void MacOnMouseMoved(int32_t, int32_t);
|
||||
void MacOnMouseMoved(int32_t x, int32_t y);
|
||||
|
||||
void MacOnMouseUp(int16_t, int32_t, int32_t);
|
||||
void MacOnMouseUp(int16_t button, int32_t x, int32_t y);
|
||||
|
||||
void MacOnResized(int32_t width, int32_t height, bool a3);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue