mirror of https://github.com/AxioDL/amuse.git
16 lines
178 B
C++
16 lines
178 B
C++
|
#ifndef __AMUSE_LISTENER_HPP__
|
||
|
#define __AMUSE_LISTENER_HPP__
|
||
|
|
||
|
#include "Entity.hpp"
|
||
|
|
||
|
namespace amuse
|
||
|
{
|
||
|
|
||
|
class Listener : public Entity
|
||
|
{
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif // __AMUSE_LISTENER_HPP__
|