| 2956 | int osipf_SoundFindId(const char *s_name) { return FindSoundName(IGNORE_TABLE(s_name)); } |
| 2957 | |
| 2958 | bool osipf_AIIsObjFriend(int obj_handle, int it_handle) { |
| 2959 | object *me = ObjGet(obj_handle); |
| 2960 | object *it = ObjGet(it_handle); |
| 2961 | |
| 2962 | if (me && it) |
| 2963 | return AIObjFriend(me, it); |
| 2964 | |
| 2965 | return false; |
| 2966 | } |
| 2967 | |
| 2968 | bool osipf_AIIsObjEnemy(int obj_handle, int it_handle) { |
| 2969 | object *me = ObjGet(obj_handle); |
nothing calls this directly
no test coverage detected