| 847 | } |
| 848 | |
| 849 | uint64_t ECS::system_get_size_system_data(godex::system_id p_id) { |
| 850 | ERR_FAIL_COND_V_MSG(verify_system_id(p_id) == false, 0, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?"); |
| 851 | return systems_info[p_id].system_data_get_size(); |
| 852 | } |
| 853 | |
| 854 | void ECS::system_new_placement_system_data(godex::system_id p_id, uint8_t *p_mem, Token p_token, World *p_world, Pipeline *p_pipeline) { |
| 855 | ERR_FAIL_COND_MSG(verify_system_id(p_id) == false, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?"); |
nothing calls this directly
no outgoing calls
no test coverage detected