mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Importing EDE2 code to svn... NOTE: It doesn't compile! Stuff thats broken: edewm, eworkpanel, eiconman,
emenueditor
This commit is contained in:
14
edewm/tests/sound_test.cpp
Normal file
14
edewm/tests/sound_test.cpp
Normal file
@ -0,0 +1,14 @@
|
||||
#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;
|
||||
}
|
Reference in New Issue
Block a user