This commit is contained in:
Daveo 2000-11-16 23:08:54 +00:00
parent 152a0b08b5
commit b35617dd9a
23 changed files with 333 additions and 217 deletions

View file

@ -24,12 +24,14 @@ void CMap::SetSize(int Width,int Height,BOOL Clear)
if (Clear)
{
for (int Y=0;Y<Height;Y++)
{
for (int X=0;X<Width;X++)
{
Map[X][Y].Set=0;
// Map[X][Y].Tile=(X+Y)%9;
Map[X][Y].Flags=0;
Map[X][Y].Tile=0;
}
}
}
}