blob: 7750b19b04f84a0818c02dd0f608dfae976c605e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* Copyright (C) David Wolfe, 1999. All rights reserved.
* Ported to Qt and adapted for TDDD86, 2015.
*/
#ifndef HERO_H
#define HERO_H
#include "Unit.h"
#include <QGraphicsScene>
class Hero : public Unit {
public:
Hero();
/*
* Draws this hero onto the given QGraphicsScene.
*/
void draw(QGraphicsScene *scene) const;
};
#endif // HERO_H
|