mirror of
https://github.com/AxioDL/amuse.git
synced 2025-07-28 16:05:46 +00:00
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__
|