| 34 | static void zPlatFM_Update(zPlatform* plat, xScene*, F32 dt); |
| 35 | |
| 36 | static void genericPlatRender(xEnt* ent) |
| 37 | { |
| 38 | if (!ent->model || !xEntIsVisible(ent)) |
| 39 | { |
| 40 | return; |
| 41 | } |
| 42 | |
| 43 | xModelRender(ent->model); |
| 44 | } |
| 45 | |
| 46 | void zPlatform_Init(void* plat, void* asset) |
| 47 | { |
nothing calls this directly
no test coverage detected