From d6a4051b4a04fb97650fca533065147facf86c3d Mon Sep 17 00:00:00 2001 From: Javier Sancho Date: Wed, 28 Aug 2019 18:48:35 +0200 Subject: [PATCH] License --- dungeon-master/generators/town.scm | 17 +++++++++++++++++ dungeon-master/geom.scm | 17 +++++++++++++++++ dungeon-master/geom/bowyer-watson.scm | 17 +++++++++++++++++ dungeon-master/geom/point.scm | 17 +++++++++++++++++ dungeon-master/geom/triangle.scm | 17 +++++++++++++++++ dungeon-master/geom/voronoi.scm | 17 +++++++++++++++++ 6 files changed, 102 insertions(+) diff --git a/dungeon-master/generators/town.scm b/dungeon-master/generators/town.scm index cefa138..feb38a0 100644 --- a/dungeon-master/generators/town.scm +++ b/dungeon-master/generators/town.scm @@ -1,3 +1,20 @@ +;;; Dungeon Master --- Adventure generator for GNU Guile +;;; 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 Haunt. If not, see . + + (define-module (dungeon-master generators town) #:use-module (dungeon-master geom voronoi) #:use-module (dungeon-master geom point) diff --git a/dungeon-master/geom.scm b/dungeon-master/geom.scm index 96cc378..0180279 100644 --- a/dungeon-master/geom.scm +++ b/dungeon-master/geom.scm @@ -1,3 +1,20 @@ +;;; Dungeon Master --- Adventure generator for GNU Guile +;;; 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 Haunt. If not, see . + + (define-module (dungeon-master geom) #:use-module (dungeon-master geom point) #:export (angle-sign)) diff --git a/dungeon-master/geom/bowyer-watson.scm b/dungeon-master/geom/bowyer-watson.scm index 7283b6f..fe7c036 100644 --- a/dungeon-master/geom/bowyer-watson.scm +++ b/dungeon-master/geom/bowyer-watson.scm @@ -1,3 +1,20 @@ +;;; Dungeon Master --- Adventure generator for GNU Guile +;;; 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 Haunt. If not, see . + + (define-module (dungeon-master geom bowyer-watson) #:use-module (ice-9 receive) #:use-module (srfi srfi-1) diff --git a/dungeon-master/geom/point.scm b/dungeon-master/geom/point.scm index 3f471eb..d13cdf7 100644 --- a/dungeon-master/geom/point.scm +++ b/dungeon-master/geom/point.scm @@ -1,3 +1,20 @@ +;;; Dungeon Master --- Adventure generator for GNU Guile +;;; 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 Haunt. If not, see . + + (define-module (dungeon-master geom point) #:use-module (srfi srfi-9) #:export (make-point diff --git a/dungeon-master/geom/triangle.scm b/dungeon-master/geom/triangle.scm index 123dd05..109f7fe 100644 --- a/dungeon-master/geom/triangle.scm +++ b/dungeon-master/geom/triangle.scm @@ -1,3 +1,20 @@ +;;; Dungeon Master --- Adventure generator for GNU Guile +;;; 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 Haunt. If not, see . + + (define-module (dungeon-master geom triangle) #:use-module (ice-9 receive) #:use-module (srfi srfi-9) diff --git a/dungeon-master/geom/voronoi.scm b/dungeon-master/geom/voronoi.scm index 66acf9e..86b0fef 100644 --- a/dungeon-master/geom/voronoi.scm +++ b/dungeon-master/geom/voronoi.scm @@ -1,3 +1,20 @@ +;;; Dungeon Master --- Adventure generator for GNU Guile +;;; 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 Haunt. If not, see . + + (define-module (dungeon-master geom voronoi) #:use-module (ice-9 receive) #:use-module (rnrs sorting) -- 2.39.2