X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=src%2Fgenerators.h;h=ab044bcc92e2c1c56bd802aedd0d32157dc4c3bc;hb=HEAD;hp=bf2f44f75c20ebea3b9c7e71b3f8d8fc2efd8ff5;hpb=fbd191437dc6e137521891bcddf0e75731f026fe;p=dungeon-master.git diff --git a/src/generators.h b/src/generators.h index bf2f44f..ab044bc 100644 --- a/src/generators.h +++ b/src/generators.h @@ -1,10 +1,30 @@ +/* Dungeon Master --- RPG Adventure Generator + Copyright © 2019 Javier Sancho + + Dungeon Master is free software; you can redistribute it and/or modify it + under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + + Dungeon Master is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Dungeon Master. If not, see . +*/ + #include -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);