(20120103) 23:00

This commit is contained in:
2012-01-03 23:00:00 +01:00
parent 008adb3435
commit 5b73cb9702
55 changed files with 1279 additions and 271 deletions

View File

@@ -70,7 +70,8 @@ int GameMapAux_IsFloor(char c){
c=='A' ||
c=='V' ||
c=='<' ||
c=='>' )
c=='>' ||
c=='r' )
{
return(1);
}
@@ -139,6 +140,10 @@ int GameMap_CreateLevel(int level,int point){
// Column faded
GameMapAux_CreateEnt(ent_column_faded,i,j);
}else
if(line[i]=='r'){
// Rock
GameMapAux_CreateEnt(ent_rock,i,j);
}else
if(line[i]=='B'){
// Barrel
GameMapAux_CreateEnt(ent_barrel,i,j);