#ifndef TOWERS_H #define TOWERS_H #include "games.h" class towers { public: towers(games *parent); //QVector srcTowers; //QVector curTowers; //void AddTower(QPoint point, int type); void drawcell(QPoint pnt); void clearcell(QPoint pnt); private: games * game; }; #endif // TOWERS_H