13 lines
191 B
C++
13 lines
191 B
C++
#include <sprstk/sprstk.h>
|
|
|
|
int main()
|
|
{
|
|
sprstk* instance = sprstk_new({.update = [](sprstk*, float, void*) {}}, nullptr);
|
|
|
|
sprstk_run(instance);
|
|
|
|
sprstk_stop(instance);
|
|
|
|
return 0;
|
|
}
|