mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 01:42:29 +00:00
16 lines
235 B
C
16 lines
235 B
C
|
|
#ifndef EVENT_KEY_DOWN_H
|
||
|
|
#define EVENT_KEY_DOWN_H
|
||
|
|
|
||
|
|
#include "storm/list.h"
|
||
|
|
#include "event/types.h"
|
||
|
|
|
||
|
|
typedef struct EvtKeyDown EvtKeyDown;
|
||
|
|
|
||
|
|
STORM_TS_LIST(EvtKeyDown);
|
||
|
|
|
||
|
|
struct EvtKeyDown {
|
||
|
|
TSLink_EvtKeyDown link;
|
||
|
|
KEY key;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|