summaryrefslogtreecommitdiffstats
path: root/labb4/Robot.h
blob: 953b81804ac47f63983234960ab5c37167ff7bc1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
 * 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 <QGraphicsScene>

class Robot : public Unit {
public:
    Robot();
    void draw(QGraphicsScene* scene) const;
};

#endif // ROBOT_H