#ifndef _PacmanLaser_H__ #define _PacmanLaser_H__ #include "OrxonoxPrereqs.h" #include "core/XMLPort.h" #include "worldentities/ControllableEntity.h" namespace orxonox { class _OrxonoxExport PacmanLaser : public ControllableEntity { public: PacmanLaser(Context* context); virtual ~PacmanLaser(); virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating an AutonomousDrone through XML. virtual void tick(float dt); //!< Defines which actions the AutonomousDrone has to take in each tick. private: Vector3 resetposition; }; } #endif