| 9 | char zEventLogBuf[256][20]; |
| 10 | |
| 11 | void zEntEvent(char* to, U32 toEvent) |
| 12 | { |
| 13 | U32 id = xStrHash(to); |
| 14 | xBase* sendTo = zSceneFindObject(id); |
| 15 | |
| 16 | if (sendTo) |
| 17 | { |
| 18 | zEntEvent(sendTo, toEvent); |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | void zEntEvent(U32 toID, U32 toEvent) |
| 23 | { |
no test coverage detected