mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 16:18:31 -05:00
12 lines
182 B
C
12 lines
182 B
C
|
#ifndef LEGONOTIFY_H
|
||
|
#define LEGONOTIFY_H
|
||
|
|
||
|
enum LegoEventNotificationParamType {
|
||
|
c_lButtonState = 1,
|
||
|
c_rButtonState = 2,
|
||
|
c_modKey1 = 4,
|
||
|
c_modKey2 = 8,
|
||
|
};
|
||
|
|
||
|
#endif // LEGONOTIFY_H
|