From 9e8bafa6e23da2d92e883bba1c2e3e14fe2421ce Mon Sep 17 00:00:00 2001 From: mtgmonkey Date: Mon, 8 Dec 2025 13:12:52 +0100 Subject: [PATCH] correct licensing in source files --- CHANGELOG.md | 2 +- src/Game.hs | 4 ++-- src/Game/Internal.hs | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18bf031..386f898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - use Rotors rather than Quaternions for rotation; easily extended to 4D - move Player out of Camera -- make effektiv all fields configurable +- configure with a Configuration object in the Model ## [Unreleased] diff --git a/src/Game.hs b/src/Game.hs index 9af35d0..f120a6f 100644 --- a/src/Game.hs +++ b/src/Game.hs @@ -2,8 +2,8 @@ {- | - Module : Game - Description : runs game - - Copyright : Andromeda 2025 - - License : WTFPL + - Copyright : 2025 Andromeda + - License : BSD 3-clause - Maintainer : Matrix @Andromeda:tchncs.de - Stability : Experimental -} diff --git a/src/Game/Internal.hs b/src/Game/Internal.hs index a99b1b9..61832a9 100644 --- a/src/Game/Internal.hs +++ b/src/Game/Internal.hs @@ -1,9 +1,9 @@ {-# LANGUAGE DisambiguateRecordFields, NamedFieldPuns, OverloadedRecordDot #-} {- | - Module : Game.Internal - - Description : 'hidden' functions - - Copyright : Andromeda 2025 - - License : WTFPL + - Description : internal functions + - Copyright : 2025 Andromeda + - License : BSD 3-clause - Maintainer : Matrix @Andromeda:tchncs.de - Stability : Experimental -}