Update ScriptHook.h

Change multiline comments into single line comments
This commit is contained in:
Derek "Turtle" Roe 2021-03-17 22:37:50 -05:00
parent e6b9802a60
commit ae24c9e1e4
1 changed files with 2 additions and 2 deletions

View File

@ -32,9 +32,9 @@ public:
void InvokeAll();
void InvokeById(int callbackId);
void InvokeByParam(uint32_t param);
/* invoke if param >= cb.param && param < cb.param2*/
// invoke if param >= cb.param && param < cb.param2
void InvokeByAddressInRange(uint32_t address);
/* invoke if param >= cb.param && param < cb.param2 && (value & cb.param4) == cb.param3 */
// invoke if param >= cb.param && param < cb.param2 && (value & cb.param4) == cb.param3
void InvokeByAddressInRange_MaskedOpcode(uint32_t pc, uint32_t value);
void InvokeByAddressInRange_GPRValue(uint32_t pc);
void RemoveById(int callbackId);