Lua: remove dgn_comp, use lua instead
This commit is contained in:
@@ -18,22 +18,24 @@ struct couple {
|
||||
};
|
||||
|
||||
struct tmpdungeon {
|
||||
char name[24], protoname[24];
|
||||
char *name, *protoname;
|
||||
struct couple lev;
|
||||
int flags, chance, levels, branches,
|
||||
entry_lev; /* entry level for this dungeon */
|
||||
char boneschar;
|
||||
int align;
|
||||
};
|
||||
|
||||
struct tmplevel {
|
||||
char name[24];
|
||||
char *name;
|
||||
char *chainlvl;
|
||||
struct couple lev;
|
||||
int chance, rndlevs, chain, flags;
|
||||
char boneschar;
|
||||
};
|
||||
|
||||
struct tmpbranch {
|
||||
char name[24]; /* destination dungeon name */
|
||||
char *name; /* destination dungeon name */
|
||||
struct couple lev;
|
||||
int chain; /* index into tmplevel array (chained branch)*/
|
||||
int type; /* branch type (see below) */
|
||||
|
||||
Reference in New Issue
Block a user