Added mixer and sound (c side)
This commit is contained in:
11
src/mixer.h
Normal file
11
src/mixer.h
Normal file
@@ -0,0 +1,11 @@
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#include "sound.h"
|
||||
|
||||
|
||||
void mixer_init(void);
|
||||
void mixer_deinit(void);
|
||||
int16_t const* mixer_getNextBlock(void);
|
||||
void mixer_play(sound_t const *sound);
|
||||
void mixer_mix(void);
|
||||
Reference in New Issue
Block a user