fix bugs in wavetracewhen building towers

fix some bugs in ADeditor
This commit is contained in:
2010-09-01 21:50:30 +04:00
parent 3316f3f48f
commit 7752f7be12
12 changed files with 605 additions and 296 deletions

6
map.h
View File

@@ -12,9 +12,9 @@ public:
enum CellType
{
Free = 0,
Player = 1,
AlienPath = 1000,
PlayerTower = -1,
Player = 1, // use Player + playerId for multiplayer
AlienPath = 1000, // use AlienPath + Player and + playerId
PlayerTower = -1, // use PlayerTower - Player - playerId
Wall = -1000,
Start = 9999,
Finish = 8888