16 lines
223 B
C++
16 lines
223 B
C++
#ifndef TOWERS_H
|
|
#define TOWERS_H
|
|
|
|
#include "games.h"
|
|
|
|
class towers
|
|
{
|
|
public:
|
|
towers(games *parent);
|
|
//QVector<Tower> srcTowers;
|
|
//QVector<Tower> curTowers;
|
|
void AddTower(QPoint point, int type);
|
|
};
|
|
|
|
#endif // TOWERS_H
|