/** * 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(); void draw(QGraphicsScene* scene) const; }; #endif // ROBOT_H