Files
aliendefender/towers.h
2009-09-03 22:56:39 +04:00

16 lines
228 B
C++

#ifndef TOWERS_H
#define TOWERS_H
#include "basestruct.h"
class towers
{
public:
towers();
QVector<Tower> srcTowers;
QVector<Tower> curTowers;
void AddTower(QPointF point, int ** cells);
};
#endif // TOWERS_H