Initial stubs and basic Engine implementation

This commit is contained in:
Jack Andersen
2016-05-02 15:16:26 -10:00
parent 72ee790831
commit fa8d9038df
33 changed files with 947 additions and 1 deletions

16
lib/Voice.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include "amuse/Voice.hpp"
#include "amuse/IBackendVoice.hpp"
namespace amuse
{
Voice::Voice(Engine& engine, int groupId)
: Entity(engine, groupId)
{
}
size_t Voice::supplyAudio(size_t frames, int16_t* data)
{
}
}