Skip to content

Commit

Permalink
Merge pull request #1499 from Salluci/add-gesturechangeddone-support
Browse files Browse the repository at this point in the history
XEH - Add support for gestureChanged and gestureDone events from 2.06
  • Loading branch information
commy2 committed Sep 9, 2021
2 parents 1f02c69 + 38bfcdf commit a64733a
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 a64733a

Please sign in to comment.