Some SoundMacro command implementations

This commit is contained in:
Jack Andersen
2016-05-02 19:16:37 -10:00
parent fa8d9038df
commit 338df76711
9 changed files with 580 additions and 35 deletions

View File

@@ -4,8 +4,8 @@
namespace amuse
{
Voice::Voice(Engine& engine, int groupId)
: Entity(engine, groupId)
Voice::Voice(Engine& engine, int groupId, int vid, bool emitter)
: Entity(engine, groupId), m_vid(vid), m_emitter(emitter)
{
}
@@ -13,4 +13,12 @@ size_t Voice::supplyAudio(size_t frames, int16_t* data)
{
}
Voice* Voice::startSiblingMacro(int8_t addNote, int macroId, int macroStep)
{
}
bool Voice::loadSoundMacro(int macroId, int macroStep)
{
}
}