mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-23 16:18:31 -05:00
58085df6b0
* Implement LegoCameraController subclasses * Update legopovcontroller.cpp * fixes * Update legocameracontroller.cpp * fix naming conventions * Update legopointofviewcontroller.h * Update legopointofviewcontroller.h * Fixes * Match LegoPointOfViewController::Create --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
11 lines
182 B
C
11 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
|