Exemplo n.º 1
0
 private static extern RESULT FMOD_MusicSystem_LoadSoundData(IntPtr musicsystem, EVENT_RESOURCE resource, EVENT_MODE mode);
Exemplo n.º 2
0
 private static extern RESULT FMOD_EventGroup_LoadEventData(IntPtr eventgroup, EVENT_RESOURCE resource, EVENT_MODE mode);
Exemplo n.º 3
0
 public RESULT loadSoundData(EVENT_RESOURCE resource, EVENT_MODE mode)
 {
     return FMOD_MusicSystem_LoadSoundData(musicsystemraw, resource, mode);
 }
Exemplo n.º 4
0
 public RESULT loadEventData(EVENT_RESOURCE resource, EVENT_MODE mode)
 {
     return FMOD_EventGroup_LoadEventData(eventgroupraw, resource, mode);
 }