9 lines
108 B
C
9 lines
108 B
C
#ifndef SOUND_H
|
|
#define SOUND_H
|
|
|
|
int soundopen(void);
|
|
void soundclose(void);
|
|
void playsound(int n);
|
|
|
|
#endif
|