/** * Copyright (C) David Wolfe, 1999. All rights reserved. * Ported to Qt and adapted for TDDD86, 2015. */ #ifndef ROBOT_H #define ROBOT_H #include "Unit.h" #include class Robot : public Unit { public: Robot(); virtual void draw(QGraphicsScene* scene) const; virtual void moveTowards(const Unit& u); virtual unsigned int getCollisionCount() const; virtual bool alive() const; virtual Robot *clone() const; }; #endif // ROBOT_H