some improve game ui and bugfixes

This commit is contained in:
2011-09-11 01:26:06 +04:00
committed by unknown
parent 9f90c1e676
commit 714154a6fd
19 changed files with 363 additions and 392 deletions

View File

@@ -28,9 +28,10 @@ private:
int nextId;
struct DeadAlienIndex
{
DeadAlienIndex(int i, int p) {id = i; player = p;}
DeadAlienIndex(int i, int p, QPoint t) {id = i; player = p; tower = t;}
int player;
int id;
QPoint tower;
};
QHash <int, DeadAlienIndex> dead;