From db281a96d70a43c6a6d5b516eceb6e4f67637c57 Mon Sep 17 00:00:00 2001 From: "Jason S. Ninneman" Date: Thu, 29 Jun 2017 08:45:47 -0700 Subject: [PATCH] newdungeon.py is now make_dungeon.py. newdb.[ch] is now dungeon.[ch]. --- newdungeon.py => make_dungeon.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename newdungeon.py => make_dungeon.py (99%) diff --git a/newdungeon.py b/make_dungeon.py similarity index 99% rename from newdungeon.py rename to make_dungeon.py index 3ae0c05..6f47152 100755 --- a/newdungeon.py +++ b/make_dungeon.py @@ -47,14 +47,14 @@ import sys, yaml yaml_name = "adventure.yaml" -h_name = "newdb.h" -c_name = "newdb.c" +h_name = "dungeon.h" +c_name = "dungeon.c" statedefines = "" h_template = """/* Generated from adventure.yaml - do not hand-hack! */ -#ifndef NEWDB_H -#define NEWDB_H +#ifndef DUNGEON_H +#define DUNGEON_H #include #include @@ -215,7 +215,7 @@ enum special_refs {{ /* State definitions */ {} -#endif /* end NEWDB_H */ +#endif /* end DUNGEON_H */ """ c_template = """/* Generated from adventure.yaml - do not hand-hack! */ -- 2.31.1