Files
aliendefender/towers.h
2010-02-03 09:10:40 +03:00

16 lines
237 B
C++

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