mirror of https://github.com/AxioDL/amuse.git
12 lines
152 B
C++
12 lines
152 B
C++
|
#include "amuse/Emitter.hpp"
|
||
|
|
||
|
namespace amuse
|
||
|
{
|
||
|
|
||
|
Emitter::Emitter(Engine& engine, int groupId, Voice& vox)
|
||
|
: Entity(engine, groupId), m_vox(vox)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
}
|