mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 07:57:00 +00:00
10 lines
358 B
Plaintext
10 lines
358 B
Plaintext
#define TK_MAXRANGE 15
|
|
|
|
/// Action has succeeded, preventing further alt click interaction
|
|
#define CLICK_ACTION_SUCCESS (1<<0)
|
|
/// Action failed, preventing further alt click interaction
|
|
#define CLICK_ACTION_BLOCKING (1<<1)
|
|
/// Either return state
|
|
#define CLICK_ACTION_ANY (CLICK_ACTION_SUCCESS | CLICK_ACTION_BLOCKING)
|
|
/// Use NONE for continue interaction
|