Skip to content

Flip120/miniaudio_csharp

Repository files navigation

miniaudio_csharp

A miniaudio wrapper for c#

Basic Usage

Init the audio engine

AudioPlatform.Startup();

Load a sound and get the handle

var handle = AudioPlatform.LoadSound("my-sound-file.wav");

Play a sound

AudioPlatform.Play(handle);

Unload a sound

AudioPlatform.UnloadSound(ref handle);

Unitialize the audio engine

 AudioPlatform.Dispose();

About

A miniaudio wrapper for c#

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages