| 73 | } |
| 74 | |
| 75 | S32 xGoalGeneric::SysEvent(xBase* from, xBase* to, U32 toEvent, const F32* toParam, |
| 76 | xBase* toParamWidget, S32* handled) |
| 77 | { |
| 78 | if (this->fun_sysevent) |
| 79 | { |
| 80 | return this->fun_sysevent(this, this->usrData, from, to, toEvent, toParam, toParamWidget, |
| 81 | handled); |
| 82 | } |
| 83 | |
| 84 | return xGoal::SysEvent(from, to, toEvent, toParam, toParamWidget, handled); |
| 85 | } |
nothing calls this directly
no test coverage detected