| 857 | } |
| 858 | |
| 859 | void ECS::system_delete_placement_system_data(godex::system_id p_id, uint8_t *p_mem) { |
| 860 | ERR_FAIL_COND_MSG(verify_system_id(p_id) == false, "The SystemID: " + itos(p_id) + " doesn't exists. Are you passing a System ID?"); |
| 861 | return systems_info[p_id].system_data_delete_placement(p_mem); |
| 862 | } |
| 863 | |
| 864 | void ECS::system_set_active_system(godex::system_id p_id, uint8_t *p_mem, bool p_active) { |
| 865 | 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