]> git.jsancho.org Git - dungeon-master.git/commitdiff
License
authorJavier Sancho <jsf@jsancho.org>
Wed, 28 Aug 2019 16:48:35 +0000 (18:48 +0200)
committerJavier Sancho <jsf@jsancho.org>
Wed, 28 Aug 2019 16:48:35 +0000 (18:48 +0200)
dungeon-master/generators/town.scm
dungeon-master/geom.scm
dungeon-master/geom/bowyer-watson.scm
dungeon-master/geom/point.scm
dungeon-master/geom/triangle.scm
dungeon-master/geom/voronoi.scm

index cefa138308d0a3dbe8854b12edc52b5563e50460..feb38a0a36ab55f265f353ce79ff6d38c3b342b6 100644 (file)
@@ -1,3 +1,20 @@
+;;; Dungeon Master --- Adventure generator for GNU Guile
+;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; 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 Haunt.  If not, see <http://www.gnu.org/licenses/>.
+
+
 (define-module (dungeon-master generators town)
   #:use-module (dungeon-master geom voronoi)
   #:use-module (dungeon-master geom point)
index 96cc3789717e3f638cbb91c81031a7a8d1ebeb5f..018027962fce67431dfff837ebda905321f69814 100644 (file)
@@ -1,3 +1,20 @@
+;;; Dungeon Master --- Adventure generator for GNU Guile
+;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; 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 Haunt.  If not, see <http://www.gnu.org/licenses/>.
+
+
 (define-module (dungeon-master geom)
   #:use-module (dungeon-master geom point)
   #:export (angle-sign))
index 7283b6fc46b48a5c632689353b2ec883a30c3559..fe7c036c211c4328bb36061816b96e921484ac2c 100644 (file)
@@ -1,3 +1,20 @@
+;;; Dungeon Master --- Adventure generator for GNU Guile
+;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; 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 Haunt.  If not, see <http://www.gnu.org/licenses/>.
+
+
 (define-module (dungeon-master geom bowyer-watson)
   #:use-module (ice-9 receive)
   #:use-module (srfi srfi-1)
index 3f471eb9fa706efac47d2349b99e2b4ce1ad4bf9..d13cdf75e8e413a7b084a790d4147c70a9125e8b 100644 (file)
@@ -1,3 +1,20 @@
+;;; Dungeon Master --- Adventure generator for GNU Guile
+;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; 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 Haunt.  If not, see <http://www.gnu.org/licenses/>.
+
+
 (define-module (dungeon-master geom point)
   #:use-module (srfi srfi-9)
   #:export (make-point
index 123dd0568e57910caa3237e4f5563cac2059f370..109f7fe6a5893c5e6bad06850d658eaed9af9ec9 100644 (file)
@@ -1,3 +1,20 @@
+;;; Dungeon Master --- Adventure generator for GNU Guile
+;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; 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 Haunt.  If not, see <http://www.gnu.org/licenses/>.
+
+
 (define-module (dungeon-master geom triangle)
   #:use-module (ice-9 receive)
   #:use-module (srfi srfi-9)
index 66acf9e8c9402a46ef677d057758d037ee725826..86b0fef7cdc72cd63f83afa1ee756b815aa09f9e 100644 (file)
@@ -1,3 +1,20 @@
+;;; Dungeon Master --- Adventure generator for GNU Guile
+;;; Copyright © 2019 Javier Sancho <jsf@jsancho.org>
+;;;
+;;; 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 Haunt.  If not, see <http://www.gnu.org/licenses/>.
+
+
 (define-module (dungeon-master geom voronoi)
   #:use-module (ice-9 receive)
   #:use-module (rnrs sorting)