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

11
lib/Emitter.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "amuse/Emitter.hpp"
namespace amuse
{
Emitter::Emitter(Engine& engine, int groupId, Voice& vox)
: Entity(engine, groupId), m_vox(vox)
{
}
}