| 79 | } |
| 80 | |
| 81 | void spirit_setData(SecObject* obj) |
| 82 | { |
| 83 | obj->ptr = nullptr; |
| 84 | obj->type = OBJ_TYPE_SPIRIT; |
| 85 | if (obj->worldWidth == -1) |
| 86 | { |
| 87 | obj->worldWidth = 0; |
| 88 | } |
| 89 | if (obj->worldHeight == -1) |
| 90 | { |
| 91 | obj->worldHeight = 0; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | void sprite_setData(SecObject* obj, JediWax* data) |
| 96 | { |
no outgoing calls
no test coverage detected