mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
15 lines
176 B
C++
15 lines
176 B
C++
|
#include "../Sound.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
puts("playing...\n");
|
||
|
SoundSystem ss;
|
||
|
ss.init();
|
||
|
ss.play("demo.ogg");
|
||
|
ss.shutdown();
|
||
|
puts("done\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|