the first source

This commit is contained in:
2009-08-30 12:50:03 +04:00
commit 1e9ae4d6bb
44 changed files with 1547 additions and 0 deletions

15
towers.h Normal file
View File

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