| 486 | typedef int (*Sound_Play2d_fp)(int obj_handle, int s_id, float volume); |
| 487 | OSIRISEXTERN Sound_Play2d_fp Sound_Play2dFP; |
| 488 | static inline int Sound_Play2d(int obj_handle, int s_id, float volume = 1.0f) { |
| 489 | return Sound_Play2dFP(obj_handle, s_id, volume); |
| 490 | } |
| 491 | |
| 492 | typedef int (*Sound_Play3d_fp)(int obj_handle, int s_id, float volume); |
| 493 | OSIRISEXTERN Sound_Play3d_fp Sound_Play3dFP; |
no outgoing calls
no test coverage detected