newdungeon.py is now make_dungeon.py.
newdb.[ch] is now dungeon.[ch].
This commit is contained in:
parent
074d2c8a0f
commit
db281a96d7
1 changed files with 5 additions and 5 deletions
|
@ -47,14 +47,14 @@
|
||||||
import sys, yaml
|
import sys, yaml
|
||||||
|
|
||||||
yaml_name = "adventure.yaml"
|
yaml_name = "adventure.yaml"
|
||||||
h_name = "newdb.h"
|
h_name = "dungeon.h"
|
||||||
c_name = "newdb.c"
|
c_name = "dungeon.c"
|
||||||
|
|
||||||
statedefines = ""
|
statedefines = ""
|
||||||
|
|
||||||
h_template = """/* Generated from adventure.yaml - do not hand-hack! */
|
h_template = """/* Generated from adventure.yaml - do not hand-hack! */
|
||||||
#ifndef NEWDB_H
|
#ifndef DUNGEON_H
|
||||||
#define NEWDB_H
|
#define DUNGEON_H
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
@ -215,7 +215,7 @@ enum special_refs {{
|
||||||
/* State definitions */
|
/* State definitions */
|
||||||
|
|
||||||
{}
|
{}
|
||||||
#endif /* end NEWDB_H */
|
#endif /* end DUNGEON_H */
|
||||||
"""
|
"""
|
||||||
|
|
||||||
c_template = """/* Generated from adventure.yaml - do not hand-hack! */
|
c_template = """/* Generated from adventure.yaml - do not hand-hack! */
|
Loading…
Add table
Add a link
Reference in a new issue