2palpic: whitespace cleanup
[rofl0r-openDOW.git] / walls.h
blobfebc33542fe61421d11e2004d41285c7be8de712
1 #ifndef WALLS_H
2 #define WALLS_H
4 #include "map.h"
6 enum __attribute__ ((__packed__)) walltype {
7 WT_NONE = 0,
8 WT_SOLID = 1,
9 WT_BULLETS_PASS = 2,
12 extern const enum walltype walls[MT_MAX][210];
14 #pragma RcB2 DEP "walls.c"
16 #endif