Skip to content

Commit

Permalink
Add support for gestureChanged and gestureDone events
Browse files Browse the repository at this point in the history
  • Loading branch information
LinkIsGrim committed Sep 8, 2021
1 parent 1f02c69 commit 38bfcdf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion addons/xeh/script_component.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,6 @@
"TurnOut", \
"Deleted", \
"Disassembled", \
"Suppressed"
"Suppressed", \
"GestureChanged", \
"GestureDone"
8 changes: 6 additions & 2 deletions addons/xeh/script_xeh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ turnIn = "call cba_xeh_fnc_turnIn"; \
turnOut = "call cba_xeh_fnc_turnOut"; \
deleted = "call cba_xeh_fnc_deleted"; \
disassembled = "call cba_xeh_fnc_disassembled"; \
Suppressed = "call cba_xeh_fnc_Suppressed";
Suppressed = "call cba_xeh_fnc_Suppressed"; \
gestureChanged = "call cba_xeh_fnc_gestureChanged"; \
gestureDone = "call cba_xeh_fnc_gestureDone";

/*
MACRO: DELETE_EVENTHANDLERS
Expand Down Expand Up @@ -111,4 +113,6 @@ turnIn = ""; \
turnOut = ""; \
deleted = ""; \
disassembled = ""; \
Suppressed = "";
Suppressed = ""; \
gestureChanged = ""; \
gestureDone = ""

0 comments on commit 38bfcdf

Please sign in to comment.