]> git.jsancho.org Git - dungeon-master.git/blobdiff - src/generators.h
Modules reorganization
[dungeon-master.git] / src / generators.h
index b07637da642d7ba57825be3250a65623d0ae0055..ab044bcc92e2c1c56bd802aedd0d32157dc4c3bc 100644 (file)
@@ -1,4 +1,4 @@
-/* Dungeon Master --- Adventure generator for GNU Guile
+/* Dungeon Master --- RPG Adventure Generator
    Copyright © 2019 Javier Sancho <jsf@jsancho.org>
 
    Dungeon Master is free software; you can redistribute it and/or modify it
    General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with Haunt.  If not, see <http://www.gnu.org/licenses/>.
+   along with Dungeon Master. If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include <libguile.h>
 
-struct SceneGenerator
+typedef struct
 {
-  std::string name;
-  std::string type;
+  char* name;
+  char* type;
   SCM proc;
-};
+} SceneGenerator;
 
-int register_generator(SceneGenerator generator);
+SceneGenerator*
+register_generator (char* name,
+                    char* type,
+                    SCM proc);