Match and link PatternedCastTo

Former-commit-id: dd62a7eaa0
This commit is contained in:
2022-10-23 11:35:55 -07:00
parent 22aca437ce
commit 47a12b876a
36 changed files with 459 additions and 172 deletions

View File

@@ -33,16 +33,16 @@ public:
void Setup(CAiTriggerFunc func, bool lnot, float arg, CAiTrigger* andTrig) {
x0_func = func;
x18_lNot = lnot;
xc_arg = arg;
x10_andTrigger = andTrig;
x18_lNot = lnot;
}
void Setup(CAiTriggerFunc func, bool lnot, float arg, CAiState* state) {
x0_func = func;
x18_lNot = lnot;
xc_arg = arg;
x14_state = state;
x18_lNot = lnot;
}
private: