mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 07:46:20 +00:00
* Mouse drag & drop refactored attack chain * fex --------- Co-authored-by: SyncIt21 <110812394+SyncIt21@users.noreply.github.com> Co-authored-by: Gandalf <9026500+Gandalf2k15@users.noreply.github.com>
8 lines
334 B
Plaintext
8 lines
334 B
Plaintext
/// 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
|