mirror of
https://github.com/AxioDL/amuse.git
synced 2025-12-09 05:27:57 +00:00
Some SoundMacro command implementations
This commit is contained in:
@@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user