X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Flevel.h;fp=src%2Flevel.h;h=d1e99317f59feec767e428167a4f2c6ea0a910a3;hb=6a120e64b1c3092d8929292882641d376ad0993b;hp=6e6eed7c3110126b509d2c57d6512d50042f6ba6;hpb=9089b4a32162a85cb3d244c915f31cc5adc3c389;p=vrlugburz diff --git a/src/level.h b/src/level.h index 6e6eed7..d1e9931 100644 --- a/src/level.h +++ b/src/level.h @@ -12,7 +12,8 @@ enum { TILE_CORNER, TILE_TEE, TILE_CROSS, - TILE_STR2OPEN + TILE_STR2OPEN, + TILE_STROPEN }; enum { @@ -24,14 +25,19 @@ enum { struct tile { char *name; int type; + + struct meshgroup mgrp; + struct tile *next; }; struct cell { int type; + int tiletype, tilerot; int wall[4]; int floor, ceil; + struct tile *tile; struct meshgroup *mgrp; int num_mgrp;