diff --git a/src/aniplayer.c b/src/aniplayer.c index 1196e0ec..b5c6ee82 100644 --- a/src/aniplayer.c +++ b/src/aniplayer.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "aniplayer.h" #include "list.h" #include "global.h" diff --git a/src/aniplayer.h b/src/aniplayer.h index 58a6dfe6..513e77a1 100644 --- a/src/aniplayer.h +++ b/src/aniplayer.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/arch_switch.c b/src/arch_switch.c index df03af69..023d1cf6 100644 --- a/src/arch_switch.c +++ b/src/arch_switch.c @@ -5,8 +5,6 @@ * Copyright (c) 2019, p-sam . */ -#include "taisei.h" - #include "arch_switch.h" #include "renderer/glcommon/debug.h" diff --git a/src/assert.h b/src/assert.h index 43c3ce7e..af81e651 100644 --- a/src/assert.h +++ b/src/assert.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/audio/audio.c b/src/audio/audio.c index dc4616a6..8c4f6736 100644 --- a/src/audio/audio.c +++ b/src/audio/audio.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "audio.h" #include "backend.h" #include "resource/resource.h" diff --git a/src/audio/audio.h b/src/audio/audio.h index 5e1cb307..10ed05ca 100644 --- a/src/audio/audio.h +++ b/src/audio/audio.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/audio/backend.c b/src/audio/backend.c index a18fa278..f2ac7442 100644 --- a/src/audio/backend.c +++ b/src/audio/backend.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "backend.h" #include "util.h" diff --git a/src/audio/backend.h b/src/audio/backend.h index 6e36f2db..30a3725e 100644 --- a/src/audio/backend.h +++ b/src/audio/backend.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/audio/null/audio_null.c b/src/audio/null/audio_null.c index ec9080f7..da80ea17 100644 --- a/src/audio/null/audio_null.c +++ b/src/audio/null/audio_null.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "../backend.h" #include "util.h" diff --git a/src/audio/sdl/audio_sdl.c b/src/audio/sdl/audio_sdl.c index 2bacee21..13e8edc3 100644 --- a/src/audio/sdl/audio_sdl.c +++ b/src/audio/sdl/audio_sdl.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "../backend.h" #include "../stream/mixer.h" diff --git a/src/audio/stream/mixer.c b/src/audio/stream/mixer.c index 11da5b87..6e2018c8 100644 --- a/src/audio/stream/mixer.c +++ b/src/audio/stream/mixer.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "mixer.h" #include "util.h" diff --git a/src/audio/stream/mixer.h b/src/audio/stream/mixer.h index 596d533c..05b05933 100644 --- a/src/audio/stream/mixer.h +++ b/src/audio/stream/mixer.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/audio/stream/player.c b/src/audio/stream/player.c index abe5f452..afa6b372 100644 --- a/src/audio/stream/player.c +++ b/src/audio/stream/player.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "player.h" #include "util.h" diff --git a/src/audio/stream/player.h b/src/audio/stream/player.h index 3a14e531..8e2ea74c 100644 --- a/src/audio/stream/player.h +++ b/src/audio/stream/player.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/audio/stream/stream.c b/src/audio/stream/stream.c index 6698cf01..f0e2f82b 100644 --- a/src/audio/stream/stream.c +++ b/src/audio/stream/stream.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stream.h" #include "stream_opus.h" diff --git a/src/audio/stream/stream.h b/src/audio/stream/stream.h index ab5804f7..8fbdfc63 100644 --- a/src/audio/stream/stream.h +++ b/src/audio/stream/stream.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/audio/stream/stream_opus.c b/src/audio/stream/stream_opus.c index 43856d3f..eab1cb52 100644 --- a/src/audio/stream/stream_opus.c +++ b/src/audio/stream/stream_opus.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stream_opus.h" #include "util.h" diff --git a/src/audio/stream/stream_opus.h b/src/audio/stream/stream_opus.h index 8d7b7483..9155433e 100644 --- a/src/audio/stream/stream_opus.h +++ b/src/audio/stream/stream_opus.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/audio/stream/stream_pcm.c b/src/audio/stream/stream_pcm.c index fe475a1e..44df9293 100644 --- a/src/audio/stream/stream_pcm.c +++ b/src/audio/stream/stream_pcm.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stream_pcm.h" diff --git a/src/audio/stream/stream_pcm.h b/src/audio/stream/stream_pcm.h index ebca588e..9daabaa1 100644 --- a/src/audio/stream/stream_pcm.h +++ b/src/audio/stream/stream_pcm.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/bitarray.h b/src/bitarray.h index dc54f1bc..1e3f14fe 100644 --- a/src/bitarray.h +++ b/src/bitarray.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/boss.c b/src/boss.c index b2655edc..1fd3f1c6 100644 --- a/src/boss.c +++ b/src/boss.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "boss.h" #include "global.h" #include "stage.h" diff --git a/src/boss.h b/src/boss.h index 1334b0af..2eb4d46c 100644 --- a/src/boss.h +++ b/src/boss.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/camcontrol.c b/src/camcontrol.c index daf45c7d..1079704a 100644 --- a/src/camcontrol.c +++ b/src/camcontrol.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "camcontrol.h" diff --git a/src/camcontrol.h b/src/camcontrol.h index 8402353c..7cb706ad 100644 --- a/src/camcontrol.h +++ b/src/camcontrol.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/cli.c b/src/cli.c index 22f76a5c..1e274156 100644 --- a/src/cli.c +++ b/src/cli.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include "cli.h" diff --git a/src/cli.h b/src/cli.h index 146fc166..60656cdd 100644 --- a/src/cli.h +++ b/src/cli.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/color.c b/src/color.c index c7823b3c..06f04502 100644 --- a/src/color.c +++ b/src/color.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "color.h" #define COLOR_OP(c1, op, c2) do { \ diff --git a/src/color.h b/src/color.h index 72831fd4..baceaf43 100644 --- a/src/color.h +++ b/src/color.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/common_tasks.c b/src/common_tasks.c index 8fcba68f..261e59bb 100644 --- a/src/common_tasks.c +++ b/src/common_tasks.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "common_tasks.h" #include "random.h" #include "util/glm.h" diff --git a/src/common_tasks.h b/src/common_tasks.h index 9a07c16b..73013a5e 100644 --- a/src/common_tasks.h +++ b/src/common_tasks.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/config.c b/src/config.c index eee95d08..8c98173c 100644 --- a/src/config.c +++ b/src/config.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "config.h" #include "global.h" #include "version.h" diff --git a/src/config.h b/src/config.h index 9426e7c6..bea36083 100644 --- a/src/config.h +++ b/src/config.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine.h b/src/coroutine.h index 72378195..8923a74c 100644 --- a/src/coroutine.h +++ b/src/coroutine.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/coevent.c b/src/coroutine/coevent.c index 074dc801..986a697e 100644 --- a/src/coroutine/coevent.c +++ b/src/coroutine/coevent.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "internal.h" diff --git a/src/coroutine/coevent.h b/src/coroutine/coevent.h index bcbbbd4e..58842621 100644 --- a/src/coroutine/coevent.h +++ b/src/coroutine/coevent.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/coevent_internal.h b/src/coroutine/coevent_internal.h index 1688935c..d21e45cf 100644 --- a/src/coroutine/coevent_internal.h +++ b/src/coroutine/coevent_internal.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/coroutine.c b/src/coroutine/coroutine.c index 05bfcaa6..56754b26 100644 --- a/src/coroutine/coroutine.c +++ b/src/coroutine/coroutine.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "internal.h" #include "util.h" diff --git a/src/coroutine/coroutine.h b/src/coroutine/coroutine.h index f26c32b5..f5c5d503 100644 --- a/src/coroutine/coroutine.h +++ b/src/coroutine/coroutine.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/cosched.c b/src/coroutine/cosched.c index 8f259791..6447c07b 100644 --- a/src/coroutine/cosched.c +++ b/src/coroutine/cosched.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "internal.h" diff --git a/src/coroutine/cosched.h b/src/coroutine/cosched.h index 26e53a77..5f4dbd1a 100644 --- a/src/coroutine/cosched.h +++ b/src/coroutine/cosched.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/cotask.c b/src/coroutine/cotask.c index 210555d5..efc69cc9 100644 --- a/src/coroutine/cotask.c +++ b/src/coroutine/cotask.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "internal.h" diff --git a/src/coroutine/cotask.h b/src/coroutine/cotask.h index 2b507a43..c2776b1f 100644 --- a/src/coroutine/cotask.h +++ b/src/coroutine/cotask.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/cotask_internal.h b/src/coroutine/cotask_internal.h index 1e514c5a..60859d04 100644 --- a/src/coroutine/cotask_internal.h +++ b/src/coroutine/cotask_internal.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/internal.h b/src/coroutine/internal.h index fcd6662c..33173c8f 100644 --- a/src/coroutine/internal.h +++ b/src/coroutine/internal.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/coroutine/taskdsl.c b/src/coroutine/taskdsl.c index b7836e4e..d7698386 100644 --- a/src/coroutine/taskdsl.c +++ b/src/coroutine/taskdsl.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "taskdsl.h" diff --git a/src/coroutine/taskdsl.h b/src/coroutine/taskdsl.h index 3b635451..c7180048 100644 --- a/src/coroutine/taskdsl.h +++ b/src/coroutine/taskdsl.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/credits.c b/src/credits.c index ecef84e5..d4309727 100644 --- a/src/credits.c +++ b/src/credits.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "credits.h" #include "global.h" #include "stages/stage6/draw.h" diff --git a/src/credits.h b/src/credits.h index bac0fa14..0e098c30 100644 --- a/src/credits.h +++ b/src/credits.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/cutscenes/cutscene.c b/src/cutscenes/cutscene.c index 1484d286..6b77a346 100644 --- a/src/cutscenes/cutscene.c +++ b/src/cutscenes/cutscene.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "cutscene.h" #include "scene_impl.h" diff --git a/src/cutscenes/cutscene.h b/src/cutscenes/cutscene.h index 17034094..3ec6a466 100644 --- a/src/cutscenes/cutscene.h +++ b/src/cutscenes/cutscene.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/cutscenes/scene_impl.h b/src/cutscenes/scene_impl.h index 41f4dd03..8f943f6d 100644 --- a/src/cutscenes/scene_impl.h +++ b/src/cutscenes/scene_impl.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/cutscenes/scenes.c b/src/cutscenes/scenes.c index 58061f41..1d5c858d 100644 --- a/src/cutscenes/scenes.c +++ b/src/cutscenes/scenes.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "scenes.h" diff --git a/src/cutscenes/scenes.h b/src/cutscenes/scenes.h index 3ffce07f..c0efe0b4 100644 --- a/src/cutscenes/scenes.h +++ b/src/cutscenes/scenes.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/dialog.c b/src/dialog.c index d98350d9..85d813d1 100644 --- a/src/dialog.c +++ b/src/dialog.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "dialog.h" #include "global.h" #include "portrait.h" diff --git a/src/dialog.h b/src/dialog.h index ff24baa2..e6db95c3 100644 --- a/src/dialog.h +++ b/src/dialog.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/dialog/dialog_interface.h b/src/dialog/dialog_interface.h index d4de277a..bae64b45 100644 --- a/src/dialog/dialog_interface.h +++ b/src/dialog/dialog_interface.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/dialog/dialog_macros.h b/src/dialog/dialog_macros.h index 7d6e66e1..1cdb0925 100644 --- a/src/dialog/dialog_macros.h +++ b/src/dialog/dialog_macros.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/dialog/marisa.c b/src/dialog/marisa.c index 55bdffca..0fce2f07 100644 --- a/src/dialog/marisa.c +++ b/src/dialog/marisa.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "dialog_macros.h" /* diff --git a/src/dialog/marisa.h b/src/dialog/marisa.h index 6e28b371..5f49ee59 100644 --- a/src/dialog/marisa.h +++ b/src/dialog/marisa.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/dialog/reimu.c b/src/dialog/reimu.c index 92438519..96fa37d4 100644 --- a/src/dialog/reimu.c +++ b/src/dialog/reimu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "dialog_macros.h" /* diff --git a/src/dialog/reimu.h b/src/dialog/reimu.h index 2d2a0488..f2ee7214 100644 --- a/src/dialog/reimu.h +++ b/src/dialog/reimu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/dialog/youmu.c b/src/dialog/youmu.c index fac542aa..c95d257c 100644 --- a/src/dialog/youmu.c +++ b/src/dialog/youmu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "dialog_macros.h" /* diff --git a/src/dialog/youmu.h b/src/dialog/youmu.h index 7d4dc722..e3817839 100644 --- a/src/dialog/youmu.h +++ b/src/dialog/youmu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/difficulty.c b/src/difficulty.c index 3ad08c2e..f01a771c 100644 --- a/src/difficulty.c +++ b/src/difficulty.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "difficulty.h" #include "resource/resource.h" #include "global.h" diff --git a/src/difficulty.h b/src/difficulty.h index 21892eb1..d4e09bd5 100644 --- a/src/difficulty.h +++ b/src/difficulty.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/dynarray.c b/src/dynarray.c index ad414653..50b639d9 100644 --- a/src/dynarray.c +++ b/src/dynarray.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "dynarray.h" #include "util.h" diff --git a/src/dynarray.h b/src/dynarray.h index 504b09f7..fcc8d735 100644 --- a/src/dynarray.h +++ b/src/dynarray.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/dynstage.c b/src/dynstage.c index 1a29c3a6..88b60aeb 100644 --- a/src/dynstage.c +++ b/src/dynstage.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #ifndef TAISEI_BUILDCONF_HAVE_POSIX #error Stage hot reloading is only supported on POSIX systems diff --git a/src/dynstage.h b/src/dynstage.h index 705a18de..952963e0 100644 --- a/src/dynstage.h +++ b/src/dynstage.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/dynstage_stub.c b/src/dynstage_stub.c index c248dfe5..6cb02ae3 100644 --- a/src/dynstage_stub.c +++ b/src/dynstage_stub.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "dynstage.h" diff --git a/src/endings.h b/src/endings.h index f502b320..3af9aa99 100644 --- a/src/endings.h +++ b/src/endings.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/enemy.c b/src/enemy.c index 60ff36d7..7ae4d045 100644 --- a/src/enemy.c +++ b/src/enemy.c @@ -2,15 +2,11 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "resource/resource.h" -#include "taisei.h" - #include "enemy.h" #include "global.h" diff --git a/src/enemy.h b/src/enemy.h index 5f082e0e..35d6a4ed 100644 --- a/src/enemy.h +++ b/src/enemy.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/enemy_classes.c b/src/enemy_classes.c index dce6b262..943b0d0c 100644 --- a/src/enemy_classes.c +++ b/src/enemy_classes.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "enemy_classes.h" #include "common_tasks.h" diff --git a/src/enemy_classes.h b/src/enemy_classes.h index 3a526742..901f62d8 100644 --- a/src/enemy_classes.h +++ b/src/enemy_classes.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/entity.c b/src/entity.c index 2a353a3c..c8c4dd4c 100644 --- a/src/entity.c +++ b/src/entity.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "entity.h" #include "util.h" #include "renderer/api.h" diff --git a/src/entity.h b/src/entity.h index 4c894c4e..223f25c7 100644 --- a/src/entity.h +++ b/src/entity.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/eventloop/eventloop.c b/src/eventloop/eventloop.c index 9a442a00..675827fc 100644 --- a/src/eventloop/eventloop.c +++ b/src/eventloop/eventloop.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "eventloop_private.h" #include "util.h" #include "global.h" diff --git a/src/eventloop/eventloop.h b/src/eventloop/eventloop.h index 243579ae..30f4c12e 100644 --- a/src/eventloop/eventloop.h +++ b/src/eventloop/eventloop.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/eventloop/eventloop_private.h b/src/eventloop/eventloop_private.h index b28c3bf7..a25709ed 100644 --- a/src/eventloop/eventloop_private.h +++ b/src/eventloop/eventloop_private.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/eventloop/executor_emscripten.c b/src/eventloop/executor_emscripten.c index 7bcf0a08..31823887 100644 --- a/src/eventloop/executor_emscripten.c +++ b/src/eventloop/executor_emscripten.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "eventloop_private.h" #include "events.h" #include "global.h" diff --git a/src/eventloop/executor_synchro.c b/src/eventloop/executor_synchro.c index b8cec1f4..24c51664 100644 --- a/src/eventloop/executor_synchro.c +++ b/src/eventloop/executor_synchro.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "eventloop_private.h" #include "util.h" #include "framerate.h" diff --git a/src/events.c b/src/events.c index 265cb34b..b6893b2a 100644 --- a/src/events.c +++ b/src/events.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "events.h" #include "config.h" #include "global.h" diff --git a/src/events.h b/src/events.h index dfd41ed4..10b40b4b 100644 --- a/src/events.h +++ b/src/events.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/filewatch/filewatch.h b/src/filewatch/filewatch.h index 852c8ef0..34d5f609 100644 --- a/src/filewatch/filewatch.h +++ b/src/filewatch/filewatch.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/filewatch/filewatch_inotify.c b/src/filewatch/filewatch_inotify.c index 05f4a9e9..8e3b885a 100644 --- a/src/filewatch/filewatch_inotify.c +++ b/src/filewatch/filewatch_inotify.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "filewatch.h" #include "util.h" diff --git a/src/filewatch/filewatch_null.c b/src/filewatch/filewatch_null.c index 4b703fbb..9eedc4d1 100644 --- a/src/filewatch/filewatch_null.c +++ b/src/filewatch/filewatch_null.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "filewatch.h" diff --git a/src/framerate.c b/src/framerate.c index 32e083cc..bffb9404 100644 --- a/src/framerate.c +++ b/src/framerate.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "framerate.h" #include "global.h" #include "video.h" diff --git a/src/framerate.h b/src/framerate.h index 3cdd4f7e..b7fed496 100644 --- a/src/framerate.h +++ b/src/framerate.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/gamepad.c b/src/gamepad.c index 8993249c..b42787dd 100644 --- a/src/gamepad.c +++ b/src/gamepad.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "gamepad.h" #include "config.h" #include "events.h" diff --git a/src/gamepad.h b/src/gamepad.h index 66d43191..99a88ce4 100644 --- a/src/gamepad.h +++ b/src/gamepad.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/global.c b/src/global.c index c344ba57..bf1affde 100644 --- a/src/global.c +++ b/src/global.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" Global global; diff --git a/src/global.h b/src/global.h index 1a6d8594..905ed7d3 100644 --- a/src/global.h +++ b/src/global.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/hashtable.c b/src/hashtable.c index 1bddd462..87a61838 100644 --- a/src/hashtable.c +++ b/src/hashtable.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "hashtable.h" #include "util.h" diff --git a/src/hashtable.h b/src/hashtable.h index 0ad6e36e..331b59f0 100644 --- a/src/hashtable.h +++ b/src/hashtable.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/hirestime.c b/src/hirestime.c index 2d7e7837..fd0ed6e6 100644 --- a/src/hirestime.c +++ b/src/hirestime.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "hirestime.h" #include "thread.h" diff --git a/src/hirestime.h b/src/hirestime.h index 7bdce32d..80353b52 100644 --- a/src/hirestime.h +++ b/src/hirestime.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/item.c b/src/item.c index d0264341..6f01a756 100644 --- a/src/item.c +++ b/src/item.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "item.h" #include "global.h" #include "list.h" diff --git a/src/item.h b/src/item.h index 48a7a7a4..48a7f44c 100644 --- a/src/item.h +++ b/src/item.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/known_entities.h b/src/known_entities.h index 6243daf3..38de093b 100644 --- a/src/known_entities.h +++ b/src/known_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/laser.h b/src/laser.h index fbc1cf63..42ac79cc 100644 --- a/src/laser.h +++ b/src/laser.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/lasers/draw.c b/src/lasers/draw.c index 8e360a72..ba2e98dd 100644 --- a/src/lasers/draw.c +++ b/src/lasers/draw.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "laser.h" #include "draw.h" diff --git a/src/lasers/draw.h b/src/lasers/draw.h index 05fefc92..c7533151 100644 --- a/src/lasers/draw.h +++ b/src/lasers/draw.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/lasers/internal.c b/src/lasers/internal.c index 029bf4ce..57a5b560 100644 --- a/src/lasers/internal.c +++ b/src/lasers/internal.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "internal.h" diff --git a/src/lasers/internal.h b/src/lasers/internal.h index 8f757b00..3cec7acf 100644 --- a/src/lasers/internal.h +++ b/src/lasers/internal.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/lasers/laser.c b/src/lasers/laser.c index 43c8c03f..ba7b9f40 100644 --- a/src/lasers/laser.c +++ b/src/lasers/laser.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "laser.h" #include "internal.h" #include "draw.h" diff --git a/src/lasers/laser.h b/src/lasers/laser.h index e0b9ebdd..b8d573bd 100644 --- a/src/lasers/laser.h +++ b/src/lasers/laser.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/lasers/rules.c b/src/lasers/rules.c index 184ff6ae..db7a193b 100644 --- a/src/lasers/rules.c +++ b/src/lasers/rules.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "rules.h" diff --git a/src/lasers/rules.h b/src/lasers/rules.h index 90aa8c17..3594bf22 100644 --- a/src/lasers/rules.h +++ b/src/lasers/rules.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/list.c b/src/list.c index e350b68a..1bd3b5cc 100644 --- a/src/list.c +++ b/src/list.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "list.h" #include "global.h" diff --git a/src/list.h b/src/list.h index 999e3d09..ce34fbc9 100644 --- a/src/list.h +++ b/src/list.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/log.c b/src/log.c index 115bcf56..3cacc6b6 100644 --- a/src/log.c +++ b/src/log.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include diff --git a/src/log.h b/src/log.h index 91db808d..bd3d1a70 100644 --- a/src/log.h +++ b/src/log.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/main.c b/src/main.c index 5dbe78b6..870a066a 100644 --- a/src/main.c +++ b/src/main.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include #include diff --git a/src/memory/allocator.c b/src/memory/allocator.c index d4e869de..4b6edf9a 100644 --- a/src/memory/allocator.c +++ b/src/memory/allocator.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "allocator.h" #include "util.h" diff --git a/src/memory/allocator.h b/src/memory/allocator.h index 498288b6..86ce79d2 100644 --- a/src/memory/allocator.h +++ b/src/memory/allocator.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/memory/arena.c b/src/memory/arena.c index e46742b4..58ebdb41 100644 --- a/src/memory/arena.c +++ b/src/memory/arena.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "arena.h" #include "util.h" diff --git a/src/memory/arena.h b/src/memory/arena.h index 40b4a09c..ada3bad1 100644 --- a/src/memory/arena.h +++ b/src/memory/arena.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/memory/memory.c b/src/memory/memory.c index 2e2c3b45..4a1127f7 100644 --- a/src/memory/memory.c +++ b/src/memory/memory.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "memory.h" #include "util.h" diff --git a/src/memory/memory.h b/src/memory/memory.h index 533bab8d..7f4db09b 100644 --- a/src/memory/memory.h +++ b/src/memory/memory.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/memory/util.h b/src/memory/util.h index 31fe52e4..ffe083e0 100644 --- a/src/memory/util.h +++ b/src/memory/util.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/menu/charprofile.c b/src/menu/charprofile.c index 12badd2b..517ce2e2 100644 --- a/src/menu/charprofile.c +++ b/src/menu/charprofile.c @@ -2,16 +2,12 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "events.h" #include "resource/resource.h" -#include "taisei.h" - #include "charprofile.h" #include "mainmenu.h" #include "portrait.h" diff --git a/src/menu/charprofile.h b/src/menu/charprofile.h index 888d1f3c..40b42c7c 100644 --- a/src/menu/charprofile.h +++ b/src/menu/charprofile.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/charselect.c b/src/menu/charselect.c index 035fc5c5..221865cc 100644 --- a/src/menu/charselect.c +++ b/src/menu/charselect.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "charselect.h" #include "menu.h" #include "mainmenu.h" diff --git a/src/menu/charselect.h b/src/menu/charselect.h index 38178a24..b0701e7b 100644 --- a/src/menu/charselect.h +++ b/src/menu/charselect.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/common.c b/src/menu/common.c index b16acba9..343920e4 100644 --- a/src/menu/common.c +++ b/src/menu/common.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "common.h" #include "global.h" #include "menu.h" diff --git a/src/menu/common.h b/src/menu/common.h index eb9034a6..12aa4c0a 100644 --- a/src/menu/common.h +++ b/src/menu/common.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/cutsceneview.c b/src/menu/cutsceneview.c index 0bed100f..1ecc2754 100644 --- a/src/menu/cutsceneview.c +++ b/src/menu/cutsceneview.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util/callchain.h" #include "menu/menu.h" #include "cutsceneview.h" diff --git a/src/menu/cutsceneview.h b/src/menu/cutsceneview.h index 8fd086f6..f8aac675 100644 --- a/src/menu/cutsceneview.h +++ b/src/menu/cutsceneview.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/difficultyselect.c b/src/menu/difficultyselect.c index 0a671eb1..e9f79451 100644 --- a/src/menu/difficultyselect.c +++ b/src/menu/difficultyselect.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "difficulty.h" #include "difficultyselect.h" #include "mainmenu.h" diff --git a/src/menu/difficultyselect.h b/src/menu/difficultyselect.h index c50a138c..cf14b06f 100644 --- a/src/menu/difficultyselect.h +++ b/src/menu/difficultyselect.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/gameovermenu.c b/src/menu/gameovermenu.c index 5d6d61a8..86a01470 100644 --- a/src/menu/gameovermenu.c +++ b/src/menu/gameovermenu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "menu.h" #include "gameovermenu.h" #include "ingamemenu.h" diff --git a/src/menu/gameovermenu.h b/src/menu/gameovermenu.h index 8c177aaa..58e619de 100644 --- a/src/menu/gameovermenu.h +++ b/src/menu/gameovermenu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/ingamemenu.c b/src/menu/ingamemenu.c index ac72d07b..c2eee913 100644 --- a/src/menu/ingamemenu.c +++ b/src/menu/ingamemenu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "menu.h" #include "common.h" #include "ingamemenu.h" diff --git a/src/menu/ingamemenu.h b/src/menu/ingamemenu.h index 6a1939b3..764033e6 100644 --- a/src/menu/ingamemenu.h +++ b/src/menu/ingamemenu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/mainmenu.c b/src/menu/mainmenu.c index 29df10f8..46f5fb2f 100644 --- a/src/menu/mainmenu.c +++ b/src/menu/mainmenu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "mainmenu.h" #include "menu.h" #include "submenus.h" diff --git a/src/menu/mainmenu.h b/src/menu/mainmenu.h index f55ec489..7a796651 100644 --- a/src/menu/mainmenu.h +++ b/src/menu/mainmenu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/media.c b/src/menu/media.c index 91f92bd0..18591cdf 100644 --- a/src/menu/media.c +++ b/src/menu/media.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "media.h" #include "musicroom.h" #include "cutsceneview.h" diff --git a/src/menu/media.h b/src/menu/media.h index d9ec2982..0d810b7c 100644 --- a/src/menu/media.h +++ b/src/menu/media.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/menu.c b/src/menu/menu.c index 4f364502..1fd6ec1e 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "menu.h" #include "global.h" #include "video.h" diff --git a/src/menu/menu.h b/src/menu/menu.h index 491cbfb5..d019ce4f 100644 --- a/src/menu/menu.h +++ b/src/menu/menu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/musicroom.c b/src/menu/musicroom.c index c97adaaa..6049f8b2 100644 --- a/src/menu/musicroom.c +++ b/src/menu/musicroom.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "musicroom.h" #include "resource/resource.h" #include "resource/font.h" diff --git a/src/menu/musicroom.h b/src/menu/musicroom.h index f7c7dc9d..a4c07bbd 100644 --- a/src/menu/musicroom.h +++ b/src/menu/musicroom.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/options.c b/src/menu/options.c index d9b1a288..aa3b46bc 100644 --- a/src/menu/options.c +++ b/src/menu/options.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include "menu.h" diff --git a/src/menu/options.h b/src/menu/options.h index e81a43ea..cdbb55bb 100644 --- a/src/menu/options.h +++ b/src/menu/options.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/replayview.c b/src/menu/replayview.c index 00e449fc..14f80884 100644 --- a/src/menu/replayview.c +++ b/src/menu/replayview.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "menu.h" #include "options.h" diff --git a/src/menu/replayview.h b/src/menu/replayview.h index fce66bc3..dd3dbef7 100644 --- a/src/menu/replayview.h +++ b/src/menu/replayview.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/savereplay.c b/src/menu/savereplay.c index 8f07cbc5..8ced6052 100644 --- a/src/menu/savereplay.c +++ b/src/menu/savereplay.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "savereplay.h" #include "mainmenu.h" #include "global.h" diff --git a/src/menu/savereplay.h b/src/menu/savereplay.h index f4ee7c35..6a08745a 100644 --- a/src/menu/savereplay.h +++ b/src/menu/savereplay.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/spellpractice.c b/src/menu/spellpractice.c index c9136d0d..50d1a8b6 100644 --- a/src/menu/spellpractice.c +++ b/src/menu/spellpractice.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "spellpractice.h" #include "common.h" #include "options.h" diff --git a/src/menu/spellpractice.h b/src/menu/spellpractice.h index c73ea68a..ce7988ac 100644 --- a/src/menu/spellpractice.h +++ b/src/menu/spellpractice.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/stagepractice.c b/src/menu/stagepractice.c index 9d327ebf..84c1d0e5 100644 --- a/src/menu/stagepractice.c +++ b/src/menu/stagepractice.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stagepractice.h" #include "common.h" #include "options.h" diff --git a/src/menu/stagepractice.h b/src/menu/stagepractice.h index 02879cc6..ea12d663 100644 --- a/src/menu/stagepractice.h +++ b/src/menu/stagepractice.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/stageselect.c b/src/menu/stageselect.c index f5007c36..a986a5d8 100644 --- a/src/menu/stageselect.c +++ b/src/menu/stageselect.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "menu.h" #include "options.h" diff --git a/src/menu/stageselect.h b/src/menu/stageselect.h index 8dc34e87..91efb2f4 100644 --- a/src/menu/stageselect.h +++ b/src/menu/stageselect.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/menu/submenus.c b/src/menu/submenus.c index 613b0b2c..b6c27a36 100644 --- a/src/menu/submenus.c +++ b/src/menu/submenus.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "menu.h" #include "options.h" #include "stageselect.h" diff --git a/src/menu/submenus.h b/src/menu/submenus.h index 4fca97aa..621fcbf7 100644 --- a/src/menu/submenus.h +++ b/src/menu/submenus.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/move.c b/src/move.c index 862b5a33..5e0c3473 100644 --- a/src/move.c +++ b/src/move.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "move.h" #include "util/miscmath.h" diff --git a/src/move.h b/src/move.h index b7fcfb22..bd238d85 100644 --- a/src/move.h +++ b/src/move.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/objectpool.c b/src/objectpool.c index e732d76d..012cc8b9 100644 --- a/src/objectpool.c +++ b/src/objectpool.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "objectpool.h" #include "util.h" #include "list.h" diff --git a/src/objectpool.h b/src/objectpool.h index 13084fff..e6596946 100644 --- a/src/objectpool.h +++ b/src/objectpool.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/pch/taisei_pch.h b/src/pch/taisei_pch.h index 14cd7d39..3b9a5b22 100644 --- a/src/pch/taisei_pch.h +++ b/src/pch/taisei_pch.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #ifndef IGUARD_pch_taisei_pch_h diff --git a/src/pixmap/conversion.c b/src/pixmap/conversion.c index 76b4fe27..e9b37e97 100644 --- a/src/pixmap/conversion.c +++ b/src/pixmap/conversion.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "pixmap.h" #include "util.h" diff --git a/src/pixmap/fileformats/fileformats.h b/src/pixmap/fileformats/fileformats.h index 77867579..3e6ff819 100644 --- a/src/pixmap/fileformats/fileformats.h +++ b/src/pixmap/fileformats/fileformats.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/pixmap/fileformats/internal.c b/src/pixmap/fileformats/internal.c index c0262510..46b0b064 100644 --- a/src/pixmap/fileformats/internal.c +++ b/src/pixmap/fileformats/internal.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "fileformats.h" #include "rwops/rwops_crc32.h" diff --git a/src/pixmap/fileformats/png.c b/src/pixmap/fileformats/png.c index cb04439b..c49b3d84 100644 --- a/src/pixmap/fileformats/png.c +++ b/src/pixmap/fileformats/png.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "fileformats.h" #include "util.h" #include "util/pngcruft.h" diff --git a/src/pixmap/fileformats/webp.c b/src/pixmap/fileformats/webp.c index 1eebc848..d486cd40 100644 --- a/src/pixmap/fileformats/webp.c +++ b/src/pixmap/fileformats/webp.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "fileformats.h" diff --git a/src/pixmap/pixmap.c b/src/pixmap/pixmap.c index 5b30ffdb..83d3081e 100644 --- a/src/pixmap/pixmap.c +++ b/src/pixmap/pixmap.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "pixmap.h" #include "fileformats/fileformats.h" #include "util.h" diff --git a/src/pixmap/pixmap.h b/src/pixmap/pixmap.h index c166eb6f..3416ad23 100644 --- a/src/pixmap/pixmap.h +++ b/src/pixmap/pixmap.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/player.c b/src/player.c index 2625b8df..95959586 100644 --- a/src/player.c +++ b/src/player.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "player.h" #include "projectile.h" diff --git a/src/player.h b/src/player.h index df03ade5..f4e56910 100644 --- a/src/player.h +++ b/src/player.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes.c b/src/plrmodes.c index c1aabe71..bf19d69f 100644 --- a/src/plrmodes.c +++ b/src/plrmodes.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "player.h" #include "global.h" #include "stage.h" diff --git a/src/plrmodes.h b/src/plrmodes.h index 4cde5787..dff56efe 100644 --- a/src/plrmodes.h +++ b/src/plrmodes.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/entities.h b/src/plrmodes/entities.h index bad6fe4b..c3f8872f 100644 --- a/src/plrmodes/entities.h +++ b/src/plrmodes/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/plrmodes/marisa.c b/src/plrmodes/marisa.c index 9dc26c48..bffb0b67 100644 --- a/src/plrmodes/marisa.c +++ b/src/plrmodes/marisa.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "marisa.h" diff --git a/src/plrmodes/marisa.h b/src/plrmodes/marisa.h index 46bb431b..e3acef98 100644 --- a/src/plrmodes/marisa.h +++ b/src/plrmodes/marisa.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/marisa_a.c b/src/plrmodes/marisa_a.c index 5a6c6612..96b78bba 100644 --- a/src/plrmodes/marisa_a.c +++ b/src/plrmodes/marisa_a.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "marisa.h" diff --git a/src/plrmodes/marisa_a.h b/src/plrmodes/marisa_a.h index c657a5b3..97261574 100644 --- a/src/plrmodes/marisa_a.h +++ b/src/plrmodes/marisa_a.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/marisa_a_entities.h b/src/plrmodes/marisa_a_entities.h index ac012eed..47919e7d 100644 --- a/src/plrmodes/marisa_a_entities.h +++ b/src/plrmodes/marisa_a_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/plrmodes/marisa_b.c b/src/plrmodes/marisa_b.c index df56d951..f347c933 100644 --- a/src/plrmodes/marisa_b.c +++ b/src/plrmodes/marisa_b.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "marisa.h" diff --git a/src/plrmodes/marisa_b.h b/src/plrmodes/marisa_b.h index 890f1998..c6864a2a 100644 --- a/src/plrmodes/marisa_b.h +++ b/src/plrmodes/marisa_b.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/marisa_b_entities.h b/src/plrmodes/marisa_b_entities.h index 15a4872b..bc451c38 100644 --- a/src/plrmodes/marisa_b_entities.h +++ b/src/plrmodes/marisa_b_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/plrmodes/reimu.c b/src/plrmodes/reimu.c index b9354ac1..2177d9e4 100644 --- a/src/plrmodes/reimu.c +++ b/src/plrmodes/reimu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "reimu.h" diff --git a/src/plrmodes/reimu.h b/src/plrmodes/reimu.h index 0afa5b56..73652e09 100644 --- a/src/plrmodes/reimu.h +++ b/src/plrmodes/reimu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/reimu_a.c b/src/plrmodes/reimu_a.c index d230880b..4c445682 100644 --- a/src/plrmodes/reimu_a.c +++ b/src/plrmodes/reimu_a.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "reimu.h" diff --git a/src/plrmodes/reimu_a_entities.h b/src/plrmodes/reimu_a_entities.h index afecacd6..8de342eb 100644 --- a/src/plrmodes/reimu_a_entities.h +++ b/src/plrmodes/reimu_a_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/plrmodes/reimu_b.c b/src/plrmodes/reimu_b.c index 8c0f871c..4c4edcd7 100644 --- a/src/plrmodes/reimu_b.c +++ b/src/plrmodes/reimu_b.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "reimu.h" diff --git a/src/plrmodes/reimu_b_entities.h b/src/plrmodes/reimu_b_entities.h index 5ed18456..94afb847 100644 --- a/src/plrmodes/reimu_b_entities.h +++ b/src/plrmodes/reimu_b_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/plrmodes/youmu.c b/src/plrmodes/youmu.c index e621eb0d..a3eb38c4 100644 --- a/src/plrmodes/youmu.c +++ b/src/plrmodes/youmu.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "youmu.h" diff --git a/src/plrmodes/youmu.h b/src/plrmodes/youmu.h index ddaf13da..e385bea9 100644 --- a/src/plrmodes/youmu.h +++ b/src/plrmodes/youmu.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/youmu_a.c b/src/plrmodes/youmu_a.c index 0f070857..fb987486 100644 --- a/src/plrmodes/youmu_a.c +++ b/src/plrmodes/youmu_a.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "youmu.h" diff --git a/src/plrmodes/youmu_a.h b/src/plrmodes/youmu_a.h index 3e356cb3..4d2cc707 100644 --- a/src/plrmodes/youmu_a.h +++ b/src/plrmodes/youmu_a.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/youmu_a_entities.h b/src/plrmodes/youmu_a_entities.h index 168680d8..131f5611 100644 --- a/src/plrmodes/youmu_a_entities.h +++ b/src/plrmodes/youmu_a_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/plrmodes/youmu_b.c b/src/plrmodes/youmu_b.c index 2096863b..9ccb4308 100644 --- a/src/plrmodes/youmu_b.c +++ b/src/plrmodes/youmu_b.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "plrmodes.h" #include "youmu.h" diff --git a/src/plrmodes/youmu_b.h b/src/plrmodes/youmu_b.h index 1d304837..fafacb28 100644 --- a/src/plrmodes/youmu_b.h +++ b/src/plrmodes/youmu_b.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/plrmodes/youmu_b_entities.h b/src/plrmodes/youmu_b_entities.h index 369a1472..935abb42 100644 --- a/src/plrmodes/youmu_b_entities.h +++ b/src/plrmodes/youmu_b_entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/portrait.c b/src/portrait.c index 246d1b65..40fb7cad 100644 --- a/src/portrait.c +++ b/src/portrait.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "portrait.h" #include "renderer/api.h" diff --git a/src/portrait.h b/src/portrait.h index 6a58583a..c65af1e8 100644 --- a/src/portrait.h +++ b/src/portrait.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/progress.c b/src/progress.c index f22d5449..85baaf1e 100644 --- a/src/progress.c +++ b/src/progress.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include "progress.h" diff --git a/src/progress.h b/src/progress.h index ca641315..d7d9a711 100644 --- a/src/progress.h +++ b/src/progress.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/projectile.c b/src/projectile.c index 8a1a37a3..59800f98 100644 --- a/src/projectile.c +++ b/src/projectile.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "projectile.h" #include "global.h" diff --git a/src/projectile.h b/src/projectile.h index f7e3b360..9f63d183 100644 --- a/src/projectile.h +++ b/src/projectile.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/projectile_prototypes.c b/src/projectile_prototypes.c index 93f34d2e..dd83d4b3 100644 --- a/src/projectile_prototypes.c +++ b/src/projectile_prototypes.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "projectile.h" #include "util.h" #include "random.h" diff --git a/src/random.c b/src/random.c index 77e8f40e..c1d230ad 100644 --- a/src/random.c +++ b/src/random.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "random.h" #include "util.h" diff --git a/src/random.h b/src/random.h index 228c7ae0..edbea6a7 100644 --- a/src/random.h +++ b/src/random.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/api.c b/src/renderer/api.c index 552659a7..fbb6e644 100644 --- a/src/renderer/api.c +++ b/src/renderer/api.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "api.h" #include "common/backend.h" #include "common/matstack.h" diff --git a/src/renderer/api.h b/src/renderer/api.h index e0d6d3d1..e9780b10 100644 --- a/src/renderer/api.h +++ b/src/renderer/api.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/backend.c b/src/renderer/common/backend.c index fbabd564..0c6dc937 100644 --- a/src/renderer/common/backend.c +++ b/src/renderer/common/backend.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "backend.h" #undef R diff --git a/src/renderer/common/backend.h b/src/renderer/common/backend.h index 0c09ed6a..32d17c73 100644 --- a/src/renderer/common/backend.h +++ b/src/renderer/common/backend.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/matstack.c b/src/renderer/common/matstack.c index d1329781..50bb9838 100644 --- a/src/renderer/common/matstack.c +++ b/src/renderer/common/matstack.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "../api.h" #include "matstack.h" #include "util/glm.h" diff --git a/src/renderer/common/matstack.h b/src/renderer/common/matstack.h index 31002639..9864789d 100644 --- a/src/renderer/common/matstack.h +++ b/src/renderer/common/matstack.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/models.c b/src/renderer/common/models.c index 6b7d2a3a..ba1773f5 100644 --- a/src/renderer/common/models.c +++ b/src/renderer/common/models.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "models.h" #include "../api.h" #include "resource/model.h" diff --git a/src/renderer/common/models.h b/src/renderer/common/models.h index 89e940fc..ff00ed1d 100644 --- a/src/renderer/common/models.h +++ b/src/renderer/common/models.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/shaderlib/cache.c b/src/renderer/common/shaderlib/cache.c index d7283581..030453fc 100644 --- a/src/renderer/common/shaderlib/cache.c +++ b/src/renderer/common/shaderlib/cache.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "shaderlib.h" #include "util.h" diff --git a/src/renderer/common/shaderlib/cache.h b/src/renderer/common/shaderlib/cache.h index b72f78d2..754b5dd5 100644 --- a/src/renderer/common/shaderlib/cache.h +++ b/src/renderer/common/shaderlib/cache.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/shaderlib/defs.h b/src/renderer/common/shaderlib/defs.h index c9fe3386..fc7941bf 100644 --- a/src/renderer/common/shaderlib/defs.h +++ b/src/renderer/common/shaderlib/defs.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/shaderlib/lang_glsl.c b/src/renderer/common/shaderlib/lang_glsl.c index 3d2e680e..0fa7430c 100644 --- a/src/renderer/common/shaderlib/lang_glsl.c +++ b/src/renderer/common/shaderlib/lang_glsl.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "shaderlib.h" #include "rwops/rwops_autobuf.h" #include "vfs/pathutil.h" diff --git a/src/renderer/common/shaderlib/lang_glsl.h b/src/renderer/common/shaderlib/lang_glsl.h index a3f18f56..2e8969f9 100644 --- a/src/renderer/common/shaderlib/lang_glsl.h +++ b/src/renderer/common/shaderlib/lang_glsl.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/shaderlib/lang_spirv.c b/src/renderer/common/shaderlib/lang_spirv.c index b5a826af..57d8d939 100644 --- a/src/renderer/common/shaderlib/lang_spirv.c +++ b/src/renderer/common/shaderlib/lang_spirv.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "shaderlib.h" #include "lang_spirv_private.h" diff --git a/src/renderer/common/shaderlib/lang_spirv.h b/src/renderer/common/shaderlib/lang_spirv.h index feb213b0..1a811bc1 100644 --- a/src/renderer/common/shaderlib/lang_spirv.h +++ b/src/renderer/common/shaderlib/lang_spirv.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/shaderlib/lang_spirv_aux.c b/src/renderer/common/shaderlib/lang_spirv_aux.c index 784ff0a8..315f6122 100644 --- a/src/renderer/common/shaderlib/lang_spirv_aux.c +++ b/src/renderer/common/shaderlib/lang_spirv_aux.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "shaderlib.h" #include "lang_spirv_private.h" #include "util.h" diff --git a/src/renderer/common/shaderlib/lang_spirv_private.h b/src/renderer/common/shaderlib/lang_spirv_private.h index 750e38b5..521dff2c 100644 --- a/src/renderer/common/shaderlib/lang_spirv_private.h +++ b/src/renderer/common/shaderlib/lang_spirv_private.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/shaderlib/lang_spirv_stub.c b/src/renderer/common/shaderlib/lang_spirv_stub.c index 6596cd77..8dc2bd2c 100644 --- a/src/renderer/common/shaderlib/lang_spirv_stub.c +++ b/src/renderer/common/shaderlib/lang_spirv_stub.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "shaderlib.h" #include "lang_spirv_private.h" #include "util.h" diff --git a/src/renderer/common/shaderlib/shaderlib.c b/src/renderer/common/shaderlib/shaderlib.c index f236a4e6..c44a7859 100644 --- a/src/renderer/common/shaderlib/shaderlib.c +++ b/src/renderer/common/shaderlib/shaderlib.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "shaderlib.h" diff --git a/src/renderer/common/shaderlib/shaderlib.h b/src/renderer/common/shaderlib/shaderlib.h index f4fd2c84..668411c5 100644 --- a/src/renderer/common/shaderlib/shaderlib.h +++ b/src/renderer/common/shaderlib/shaderlib.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/sprite_batch.c b/src/renderer/common/sprite_batch.c index 38270947..b284da24 100644 --- a/src/renderer/common/sprite_batch.c +++ b/src/renderer/common/sprite_batch.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "sprite_batch.h" #include "../api.h" #include "util/glm.h" diff --git a/src/renderer/common/sprite_batch.h b/src/renderer/common/sprite_batch.h index 4ef93514..b9babfa9 100644 --- a/src/renderer/common/sprite_batch.h +++ b/src/renderer/common/sprite_batch.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/common/state.c b/src/renderer/common/state.c index b4eb56aa..abca8531 100644 --- a/src/renderer/common/state.c +++ b/src/renderer/common/state.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "state.h" #include "backend.h" #include "matstack.h" diff --git a/src/renderer/common/state.h b/src/renderer/common/state.h index d6f32ca3..a742bdb7 100644 --- a/src/renderer/common/state.h +++ b/src/renderer/common/state.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/common_buffer.c b/src/renderer/gl33/common_buffer.c index 228496b7..c3e17279 100644 --- a/src/renderer/gl33/common_buffer.c +++ b/src/renderer/gl33/common_buffer.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "common_buffer.h" #include "gl33.h" diff --git a/src/renderer/gl33/common_buffer.h b/src/renderer/gl33/common_buffer.h index 1e0beb4b..a7ae51a5 100644 --- a/src/renderer/gl33/common_buffer.h +++ b/src/renderer/gl33/common_buffer.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/framebuffer.c b/src/renderer/gl33/framebuffer.c index 35d8f062..da1ce77a 100644 --- a/src/renderer/gl33/framebuffer.c +++ b/src/renderer/gl33/framebuffer.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "framebuffer.h" #include "gl33.h" #include "../glcommon/debug.h" diff --git a/src/renderer/gl33/framebuffer.h b/src/renderer/gl33/framebuffer.h index 4c08561e..4ae9fa6b 100644 --- a/src/renderer/gl33/framebuffer.h +++ b/src/renderer/gl33/framebuffer.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/framebuffer_async_read.c b/src/renderer/gl33/framebuffer_async_read.c index 72b8f960..78b2edcb 100644 --- a/src/renderer/gl33/framebuffer_async_read.c +++ b/src/renderer/gl33/framebuffer_async_read.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "framebuffer_async_read.h" #include "framebuffer.h" diff --git a/src/renderer/gl33/framebuffer_async_read.h b/src/renderer/gl33/framebuffer_async_read.h index b3ebce9b..52318aea 100644 --- a/src/renderer/gl33/framebuffer_async_read.h +++ b/src/renderer/gl33/framebuffer_async_read.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/renderer/gl33/framebuffer_async_read_fake.c b/src/renderer/gl33/framebuffer_async_read_fake.c index 36845a73..8b427a1f 100644 --- a/src/renderer/gl33/framebuffer_async_read_fake.c +++ b/src/renderer/gl33/framebuffer_async_read_fake.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "framebuffer_async_read.h" #include "framebuffer.h" diff --git a/src/renderer/gl33/gl33.c b/src/renderer/gl33/gl33.c index 60969a7e..544ef1db 100644 --- a/src/renderer/gl33/gl33.c +++ b/src/renderer/gl33/gl33.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "gl33.h" #include "../api.h" #include "../common/matstack.h" diff --git a/src/renderer/gl33/gl33.h b/src/renderer/gl33/gl33.h index 7656be64..37b6966d 100644 --- a/src/renderer/gl33/gl33.h +++ b/src/renderer/gl33/gl33.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/index_buffer.c b/src/renderer/gl33/index_buffer.c index 5b1ab90c..4adc6901 100644 --- a/src/renderer/gl33/index_buffer.c +++ b/src/renderer/gl33/index_buffer.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "index_buffer.h" #include "gl33.h" #include "../glcommon/debug.h" diff --git a/src/renderer/gl33/index_buffer.h b/src/renderer/gl33/index_buffer.h index a12145ef..0c62556f 100644 --- a/src/renderer/gl33/index_buffer.h +++ b/src/renderer/gl33/index_buffer.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/opengl.h b/src/renderer/gl33/opengl.h index d5ce50f4..d50b3ba9 100644 --- a/src/renderer/gl33/opengl.h +++ b/src/renderer/gl33/opengl.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/shader_object.c b/src/renderer/gl33/shader_object.c index c62f907f..43cfbe0e 100644 --- a/src/renderer/gl33/shader_object.c +++ b/src/renderer/gl33/shader_object.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "gl33.h" #include "shader_object.h" diff --git a/src/renderer/gl33/shader_object.h b/src/renderer/gl33/shader_object.h index cb8692f7..d21014d1 100644 --- a/src/renderer/gl33/shader_object.h +++ b/src/renderer/gl33/shader_object.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/shader_program.c b/src/renderer/gl33/shader_program.c index 7cc02192..d91af398 100644 --- a/src/renderer/gl33/shader_program.c +++ b/src/renderer/gl33/shader_program.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "gl33.h" #include "shader_program.h" #include "shader_object.h" diff --git a/src/renderer/gl33/shader_program.h b/src/renderer/gl33/shader_program.h index 10e2ad18..c5e324e6 100644 --- a/src/renderer/gl33/shader_program.h +++ b/src/renderer/gl33/shader_program.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/texture.c b/src/renderer/gl33/texture.c index 5d417e12..f3ffc4f5 100644 --- a/src/renderer/gl33/texture.c +++ b/src/renderer/gl33/texture.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "texture.h" #include "../api.h" #include "opengl.h" diff --git a/src/renderer/gl33/texture.h b/src/renderer/gl33/texture.h index 99bb7e5b..d3d1d239 100644 --- a/src/renderer/gl33/texture.h +++ b/src/renderer/gl33/texture.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/vertex_array.c b/src/renderer/gl33/vertex_array.c index 27e30aae..e969f218 100644 --- a/src/renderer/gl33/vertex_array.c +++ b/src/renderer/gl33/vertex_array.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "vertex_array.h" #include "vertex_buffer.h" #include "index_buffer.h" diff --git a/src/renderer/gl33/vertex_array.h b/src/renderer/gl33/vertex_array.h index b7f4d421..b0ad6590 100644 --- a/src/renderer/gl33/vertex_array.h +++ b/src/renderer/gl33/vertex_array.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gl33/vertex_buffer.c b/src/renderer/gl33/vertex_buffer.c index dbcb9fc5..068fe338 100644 --- a/src/renderer/gl33/vertex_buffer.c +++ b/src/renderer/gl33/vertex_buffer.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "vertex_buffer.h" #include "gl33.h" #include "../glcommon/debug.h" diff --git a/src/renderer/gl33/vertex_buffer.h b/src/renderer/gl33/vertex_buffer.h index 7e5f081c..d081ac25 100644 --- a/src/renderer/gl33/vertex_buffer.h +++ b/src/renderer/gl33/vertex_buffer.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/glcommon/debug.c b/src/renderer/glcommon/debug.c index e828ea48..0abd84c5 100644 --- a/src/renderer/glcommon/debug.c +++ b/src/renderer/glcommon/debug.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "debug.h" #include "util.h" #include "../api.h" diff --git a/src/renderer/glcommon/debug.h b/src/renderer/glcommon/debug.h index 85a17807..6ef8faec 100644 --- a/src/renderer/glcommon/debug.h +++ b/src/renderer/glcommon/debug.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/glcommon/opengl.c b/src/renderer/glcommon/opengl.c index 4e0bcb5d..cba9248d 100644 --- a/src/renderer/glcommon/opengl.c +++ b/src/renderer/glcommon/opengl.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "rwops/rwops_autobuf.h" #include "opengl.h" diff --git a/src/renderer/glcommon/opengl.h b/src/renderer/glcommon/opengl.h index 9fbc1c39..5075ecf8 100644 --- a/src/renderer/glcommon/opengl.h +++ b/src/renderer/glcommon/opengl.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/glcommon/shaders.c b/src/renderer/glcommon/shaders.c index bc581dec..66f37534 100644 --- a/src/renderer/glcommon/shaders.c +++ b/src/renderer/glcommon/shaders.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "shaders.h" #include "util.h" #include "opengl.h" diff --git a/src/renderer/glcommon/shaders.h b/src/renderer/glcommon/shaders.h index a6bbe21c..412dc8ce 100644 --- a/src/renderer/glcommon/shaders.h +++ b/src/renderer/glcommon/shaders.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/glcommon/texture.c b/src/renderer/glcommon/texture.c index 72e89ce7..5b248e62 100644 --- a/src/renderer/glcommon/texture.c +++ b/src/renderer/glcommon/texture.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "texture.h" #include "vtable.h" #include "../api.h" diff --git a/src/renderer/glcommon/texture.h b/src/renderer/glcommon/texture.h index adf32e6d..e43f2d68 100644 --- a/src/renderer/glcommon/texture.h +++ b/src/renderer/glcommon/texture.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/glcommon/vtable.h b/src/renderer/glcommon/vtable.h index fe6949bd..453fedf1 100644 --- a/src/renderer/glcommon/vtable.h +++ b/src/renderer/glcommon/vtable.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gles20/gles20.c b/src/renderer/gles20/gles20.c index 5991d184..61a86470 100644 --- a/src/renderer/gles20/gles20.c +++ b/src/renderer/gles20/gles20.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "gles20.h" #include "../glescommon/gles.h" #include "../gl33/gl33.h" diff --git a/src/renderer/gles20/gles20.h b/src/renderer/gles20/gles20.h index c9d473e1..9d9e3dc7 100644 --- a/src/renderer/gles20/gles20.h +++ b/src/renderer/gles20/gles20.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gles20/index_buffer.c b/src/renderer/gles20/index_buffer.c index 1b7a6027..9f033dc3 100644 --- a/src/renderer/gles20/index_buffer.c +++ b/src/renderer/gles20/index_buffer.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "index_buffer.h" IndexBuffer *gles20_index_buffer_create(uint index_size, size_t max_elements) { diff --git a/src/renderer/gles20/index_buffer.h b/src/renderer/gles20/index_buffer.h index 2a349cf8..405acec0 100644 --- a/src/renderer/gles20/index_buffer.h +++ b/src/renderer/gles20/index_buffer.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/gles30/fbcopy_fallback.c b/src/renderer/gles30/fbcopy_fallback.c index 13024895..b5f0ec28 100644 --- a/src/renderer/gles30/fbcopy_fallback.c +++ b/src/renderer/gles30/fbcopy_fallback.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "fbcopy_fallback.h" #include "gles30.h" #include "../glescommon/gles.h" diff --git a/src/renderer/gles30/fbcopy_fallback.h b/src/renderer/gles30/fbcopy_fallback.h index c46da69e..1f33d4ae 100644 --- a/src/renderer/gles30/fbcopy_fallback.h +++ b/src/renderer/gles30/fbcopy_fallback.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/renderer/gles30/gles30.c b/src/renderer/gles30/gles30.c index 81eb2cf5..14caa456 100644 --- a/src/renderer/gles30/gles30.c +++ b/src/renderer/gles30/gles30.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "gles30.h" #include "../glescommon/gles.h" #include "../gl33/gl33.h" diff --git a/src/renderer/gles30/gles30.h b/src/renderer/gles30/gles30.h index b813df49..c99d8ad9 100644 --- a/src/renderer/gles30/gles30.h +++ b/src/renderer/gles30/gles30.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/glescommon/angle_egl.c b/src/renderer/glescommon/angle_egl.c index 9c88fc3f..35b5d608 100644 --- a/src/renderer/glescommon/angle_egl.c +++ b/src/renderer/glescommon/angle_egl.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "angle_egl.h" #include "../glcommon/debug.h" diff --git a/src/renderer/glescommon/angle_egl.h b/src/renderer/glescommon/angle_egl.h index c00bd3af..2a35079f 100644 --- a/src/renderer/glescommon/angle_egl.h +++ b/src/renderer/glescommon/angle_egl.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/renderer/glescommon/angle_egl_stub.c b/src/renderer/glescommon/angle_egl_stub.c index 20aa4b7b..6f7733d6 100644 --- a/src/renderer/glescommon/angle_egl_stub.c +++ b/src/renderer/glescommon/angle_egl_stub.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "angle_egl.h" #include "util.h" diff --git a/src/renderer/glescommon/gles.c b/src/renderer/glescommon/gles.c index b3112ed7..0cbedf2b 100644 --- a/src/renderer/glescommon/gles.c +++ b/src/renderer/glescommon/gles.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "gles.h" #include "../common/backend.h" #include "../gl33/gl33.h" diff --git a/src/renderer/glescommon/gles.h b/src/renderer/glescommon/gles.h index 4ee9ebf9..1d46921b 100644 --- a/src/renderer/glescommon/gles.h +++ b/src/renderer/glescommon/gles.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/renderer/null/null.c b/src/renderer/null/null.c index b9f2e99f..bf91aa1f 100644 --- a/src/renderer/null/null.c +++ b/src/renderer/null/null.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "../api.h" #include "resource/shader_object.h" #include "../common/backend.h" diff --git a/src/replay/demoplayer.c b/src/replay/demoplayer.c index a951f7fa..39388e53 100644 --- a/src/replay/demoplayer.c +++ b/src/replay/demoplayer.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "demoplayer.h" #include "replay.h" diff --git a/src/replay/demoplayer.h b/src/replay/demoplayer.h index 1610b1c8..efaa1da8 100644 --- a/src/replay/demoplayer.h +++ b/src/replay/demoplayer.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/eventcodes.h b/src/replay/eventcodes.h index ad88948c..93db066b 100644 --- a/src/replay/eventcodes.h +++ b/src/replay/eventcodes.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/play.c b/src/replay/play.c index 4e3f0e6d..8fa409d8 100644 --- a/src/replay/play.c +++ b/src/replay/play.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "replay.h" #include "struct.h" diff --git a/src/replay/read.c b/src/replay/read.c index b9cce69e..517073ab 100644 --- a/src/replay/read.c +++ b/src/replay/read.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "replay.h" #include "rw_common.h" diff --git a/src/replay/replay.c b/src/replay/replay.c index a6ac3425..5b89dfda 100644 --- a/src/replay/replay.c +++ b/src/replay/replay.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "replay.h" #include "struct.h" #include "stage.h" diff --git a/src/replay/replay.h b/src/replay/replay.h index 9fc6874d..edf101fc 100644 --- a/src/replay/replay.h +++ b/src/replay/replay.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/rw_common.c b/src/replay/rw_common.c index 417c555f..d75eb818 100644 --- a/src/replay/rw_common.c +++ b/src/replay/rw_common.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "rw_common.h" #include "rwops/rwops_zlib.h" diff --git a/src/replay/rw_common.h b/src/replay/rw_common.h index d1e4b799..b28b9f4e 100644 --- a/src/replay/rw_common.h +++ b/src/replay/rw_common.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/stage.c b/src/replay/stage.c index 3d7da44c..21b853bd 100644 --- a/src/replay/stage.c +++ b/src/replay/stage.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stage.h" #include "struct.h" diff --git a/src/replay/stage.h b/src/replay/stage.h index 1c955abf..a033d701 100644 --- a/src/replay/stage.h +++ b/src/replay/stage.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/state.c b/src/replay/state.c index 5cc56e4f..c8cdd173 100644 --- a/src/replay/state.c +++ b/src/replay/state.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "state.h" #include "struct.h" diff --git a/src/replay/state.h b/src/replay/state.h index 1696d39d..972c507f 100644 --- a/src/replay/state.h +++ b/src/replay/state.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/struct.h b/src/replay/struct.h index f93ba263..ae4e3585 100644 --- a/src/replay/struct.h +++ b/src/replay/struct.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/tsrtool.c b/src/replay/tsrtool.c index 5e91dbe7..f0abd23f 100644 --- a/src/replay/tsrtool.c +++ b/src/replay/tsrtool.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "tsrtool.h" #include "replay.h" diff --git a/src/replay/tsrtool.h b/src/replay/tsrtool.h index 1376a1cd..03763ebe 100644 --- a/src/replay/tsrtool.h +++ b/src/replay/tsrtool.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/replay/write.c b/src/replay/write.c index 3f275911..effc08b6 100644 --- a/src/replay/write.c +++ b/src/replay/write.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "replay.h" #include "rw_common.h" diff --git a/src/resource/animation.c b/src/resource/animation.c index 6d41ec59..009b1354 100644 --- a/src/resource/animation.c +++ b/src/resource/animation.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "animation.h" #include "texture.h" #include "resource.h" diff --git a/src/resource/animation.h b/src/resource/animation.h index 084f4d42..90f40e1a 100644 --- a/src/resource/animation.h +++ b/src/resource/animation.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/bgm.c b/src/resource/bgm.c index 346ad15d..a5dfae60 100644 --- a/src/resource/bgm.c +++ b/src/resource/bgm.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "resource.h" #include "bgm.h" #include "audio/backend.h" diff --git a/src/resource/bgm.h b/src/resource/bgm.h index f2de60b4..8e0e4ce1 100644 --- a/src/resource/bgm.h +++ b/src/resource/bgm.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/font.c b/src/resource/font.c index 0237a9de..92805695 100644 --- a/src/resource/font.c +++ b/src/resource/font.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include FT_FREETYPE_H #include FT_STROKER_H diff --git a/src/resource/font.h b/src/resource/font.h index ed7cecd4..2b08b8c0 100644 --- a/src/resource/font.h +++ b/src/resource/font.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/iqm.h b/src/resource/iqm.h index 93f418f7..ea813d3a 100644 --- a/src/resource/iqm.h +++ b/src/resource/iqm.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/resource/material.c b/src/resource/material.c index 381527b1..b91d9b5d 100644 --- a/src/resource/material.c +++ b/src/resource/material.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "material.h" diff --git a/src/resource/material.h b/src/resource/material.h index 4cd8aed2..115fcc0f 100644 --- a/src/resource/material.h +++ b/src/resource/material.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/resource/model.c b/src/resource/model.c index 2d2c531b..a1c6a75b 100644 --- a/src/resource/model.c +++ b/src/resource/model.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "model.h" #include "list.h" #include "resource.h" diff --git a/src/resource/model.h b/src/resource/model.h index 5ea079e4..4bdcd4ad 100644 --- a/src/resource/model.h +++ b/src/resource/model.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/postprocess.c b/src/resource/postprocess.c index 6280df1a..4d07b286 100644 --- a/src/resource/postprocess.c +++ b/src/resource/postprocess.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include "util.h" diff --git a/src/resource/postprocess.h b/src/resource/postprocess.h index b6d2b2d0..1e0161aa 100644 --- a/src/resource/postprocess.h +++ b/src/resource/postprocess.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/resource.c b/src/resource/resource.c index ca343f13..620b7ab8 100644 --- a/src/resource/resource.c +++ b/src/resource/resource.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "resource.h" #include "config.h" diff --git a/src/resource/resource.h b/src/resource/resource.h index c84d90ba..e38554b6 100644 --- a/src/resource/resource.h +++ b/src/resource/resource.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/sfx.c b/src/resource/sfx.c index afd90771..1a4301cb 100644 --- a/src/resource/sfx.c +++ b/src/resource/sfx.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "resource.h" #include "sfx.h" #include "audio/backend.h" diff --git a/src/resource/sfx.h b/src/resource/sfx.h index 702d4c3f..691d9be3 100644 --- a/src/resource/sfx.h +++ b/src/resource/sfx.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/sfxbgm_common.c b/src/resource/sfxbgm_common.c index 34d434b5..16f03509 100644 --- a/src/resource/sfxbgm_common.c +++ b/src/resource/sfxbgm_common.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "sfxbgm_common.h" #include "audio/backend.h" #include "util.h" diff --git a/src/resource/sfxbgm_common.h b/src/resource/sfxbgm_common.h index 97caea66..500e3b29 100644 --- a/src/resource/sfxbgm_common.h +++ b/src/resource/sfxbgm_common.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/shader_object.c b/src/resource/shader_object.c index 3b24b56c..534ff844 100644 --- a/src/resource/shader_object.c +++ b/src/resource/shader_object.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "shader_object.h" #include "renderer/api.h" diff --git a/src/resource/shader_object.h b/src/resource/shader_object.h index c7c7ef55..7f2f653c 100644 --- a/src/resource/shader_object.h +++ b/src/resource/shader_object.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/shader_program.c b/src/resource/shader_program.c index 7b0ba7f3..8ae7580d 100644 --- a/src/resource/shader_program.c +++ b/src/resource/shader_program.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "shader_program.h" #include "renderer/api.h" diff --git a/src/resource/shader_program.h b/src/resource/shader_program.h index bfb88d5f..46751702 100644 --- a/src/resource/shader_program.h +++ b/src/resource/shader_program.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/sprite.c b/src/resource/sprite.c index f7d58c9e..ff3abdfe 100644 --- a/src/resource/sprite.c +++ b/src/resource/sprite.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "sprite.h" #include "video.h" #include "renderer/api.h" diff --git a/src/resource/sprite.h b/src/resource/sprite.h index 5776399d..508236ee 100644 --- a/src/resource/sprite.h +++ b/src/resource/sprite.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/texture.c b/src/resource/texture.c index f56d2be2..d94f332c 100644 --- a/src/resource/texture.c +++ b/src/resource/texture.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "texture_loader/texture_loader.h" #include "global.h" diff --git a/src/resource/texture.h b/src/resource/texture.h index e15dcb81..0cc0a0a6 100644 --- a/src/resource/texture.h +++ b/src/resource/texture.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/resource/texture_loader/basisu.c b/src/resource/texture_loader/basisu.c index 708956ca..4c4a1182 100644 --- a/src/resource/texture_loader/basisu.c +++ b/src/resource/texture_loader/basisu.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "basisu.h" #include "basisu_cache.h" diff --git a/src/resource/texture_loader/basisu.h b/src/resource/texture_loader/basisu.h index e3056661..482ad4c3 100644 --- a/src/resource/texture_loader/basisu.h +++ b/src/resource/texture_loader/basisu.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/resource/texture_loader/basisu_cache.c b/src/resource/texture_loader/basisu_cache.c index 104c1f34..c7a2de7a 100644 --- a/src/resource/texture_loader/basisu_cache.c +++ b/src/resource/texture_loader/basisu_cache.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "basisu_cache.h" #include "pixmap/pixmap.h" diff --git a/src/resource/texture_loader/basisu_cache.h b/src/resource/texture_loader/basisu_cache.h index cb19d574..a6625a3f 100644 --- a/src/resource/texture_loader/basisu_cache.h +++ b/src/resource/texture_loader/basisu_cache.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/resource/texture_loader/texture_loader.c b/src/resource/texture_loader/texture_loader.c index 076fe1b9..dfd778ac 100644 --- a/src/resource/texture_loader/texture_loader.c +++ b/src/resource/texture_loader/texture_loader.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "texture_loader.h" #include "basisu.h" diff --git a/src/resource/texture_loader/texture_loader.h b/src/resource/texture_loader/texture_loader.h index c732756a..bd2a4124 100644 --- a/src/resource/texture_loader/texture_loader.h +++ b/src/resource/texture_loader/texture_loader.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/ringbuf.c b/src/ringbuf.c index b283e956..7a554971 100644 --- a/src/ringbuf.c +++ b/src/ringbuf.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "ringbuf.h" diff --git a/src/ringbuf.h b/src/ringbuf.h index e0591f86..e447237f 100644 --- a/src/ringbuf.h +++ b/src/ringbuf.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/rwops/all.h b/src/rwops/all.h index 1602ef6f..cca72182 100644 --- a/src/rwops/all.h +++ b/src/rwops/all.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_autobuf.c b/src/rwops/rwops_autobuf.c index fa6df996..559a0270 100644 --- a/src/rwops/rwops_autobuf.c +++ b/src/rwops/rwops_autobuf.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rwops_autobuf.h" #include "rwops_segment.h" diff --git a/src/rwops/rwops_autobuf.h b/src/rwops/rwops_autobuf.h index e00a6d17..3b26c6cb 100644 --- a/src/rwops/rwops_autobuf.h +++ b/src/rwops/rwops_autobuf.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_crc32.c b/src/rwops/rwops_crc32.c index 71df8921..1ea70ac6 100644 --- a/src/rwops/rwops_crc32.c +++ b/src/rwops/rwops_crc32.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rwops_crc32.h" #include "util.h" diff --git a/src/rwops/rwops_crc32.h b/src/rwops/rwops_crc32.h index 5ed962e0..fd4d7819 100644 --- a/src/rwops/rwops_crc32.h +++ b/src/rwops/rwops_crc32.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_dummy.c b/src/rwops/rwops_dummy.c index 9b623bb8..fb6ba2f7 100644 --- a/src/rwops/rwops_dummy.c +++ b/src/rwops/rwops_dummy.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rwops_dummy.h" #include "util.h" diff --git a/src/rwops/rwops_dummy.h b/src/rwops/rwops_dummy.h index 0f7bb909..b9df1861 100644 --- a/src/rwops/rwops_dummy.h +++ b/src/rwops/rwops_dummy.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_ro.c b/src/rwops/rwops_ro.c index ed12f5a5..7028ea67 100644 --- a/src/rwops/rwops_ro.c +++ b/src/rwops/rwops_ro.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rwops_ro.h" #include "rwops_dummy.h" diff --git a/src/rwops/rwops_ro.h b/src/rwops/rwops_ro.h index e016f98a..744da7cb 100644 --- a/src/rwops/rwops_ro.h +++ b/src/rwops/rwops_ro.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_segment.c b/src/rwops/rwops_segment.c index ebb8aa55..3224c176 100644 --- a/src/rwops/rwops_segment.c +++ b/src/rwops/rwops_segment.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rwops_segment.h" #include "util.h" diff --git a/src/rwops/rwops_segment.h b/src/rwops/rwops_segment.h index 810b49ab..21ebd9c1 100644 --- a/src/rwops/rwops_segment.h +++ b/src/rwops/rwops_segment.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_sha256.c b/src/rwops/rwops_sha256.c index 1d3afaf2..80054a66 100644 --- a/src/rwops/rwops_sha256.c +++ b/src/rwops/rwops_sha256.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "rwops_sha256.h" #include "util.h" diff --git a/src/rwops/rwops_sha256.h b/src/rwops/rwops_sha256.h index 2ec9935f..3e6c2507 100644 --- a/src/rwops/rwops_sha256.h +++ b/src/rwops/rwops_sha256.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/rwops/rwops_trace.c b/src/rwops/rwops_trace.c index 54a81cf7..e0b326d7 100644 --- a/src/rwops/rwops_trace.c +++ b/src/rwops/rwops_trace.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rwops_trace.h" #include "util.h" diff --git a/src/rwops/rwops_trace.h b/src/rwops/rwops_trace.h index fec31108..e62956d4 100644 --- a/src/rwops/rwops_trace.h +++ b/src/rwops/rwops_trace.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_util.c b/src/rwops/rwops_util.c index 5ae78bf8..51342c2b 100644 --- a/src/rwops/rwops_util.c +++ b/src/rwops/rwops_util.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "rwops_util.h" #include "util.h" diff --git a/src/rwops/rwops_util.h b/src/rwops/rwops_util.h index 811287f0..95283ed4 100644 --- a/src/rwops/rwops_util.h +++ b/src/rwops/rwops_util.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/rwops/rwops_zlib.c b/src/rwops/rwops_zlib.c index 3669de31..a209a9c4 100644 --- a/src/rwops/rwops_zlib.c +++ b/src/rwops/rwops_zlib.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include diff --git a/src/rwops/rwops_zlib.h b/src/rwops/rwops_zlib.h index f10aaf3c..7c25dd95 100644 --- a/src/rwops/rwops_zlib.h +++ b/src/rwops/rwops_zlib.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/rwops/rwops_zstd.c b/src/rwops/rwops_zstd.c index 61742e09..f15d4b77 100644 --- a/src/rwops/rwops_zstd.c +++ b/src/rwops/rwops_zstd.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "rwops_zstd.h" #include "rwops_util.h" diff --git a/src/rwops/rwops_zstd.h b/src/rwops/rwops_zstd.h index d712f3d3..4c2852ae 100644 --- a/src/rwops/rwops_zstd.h +++ b/src/rwops/rwops_zstd.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stage.c b/src/stage.c index 3f0fb11b..6946fd78 100644 --- a/src/stage.c +++ b/src/stage.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "util.h" #include "stage.h" #include "global.h" diff --git a/src/stage.h b/src/stage.h index 79ab1849..576da34e 100644 --- a/src/stage.h +++ b/src/stage.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stagedraw.c b/src/stagedraw.c index 4bceb103..0ed4ab0c 100644 --- a/src/stagedraw.c +++ b/src/stagedraw.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "stagedraw.h" #include "stagetext.h" diff --git a/src/stagedraw.h b/src/stagedraw.h index 04c43247..09f0bea7 100644 --- a/src/stagedraw.h +++ b/src/stagedraw.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stageinfo.c b/src/stageinfo.c index 205b83c0..23934b33 100644 --- a/src/stageinfo.c +++ b/src/stageinfo.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stageinfo.h" #include "stages/stages.h" diff --git a/src/stageinfo.h b/src/stageinfo.h index 43a7bf70..26c19e2b 100644 --- a/src/stageinfo.h +++ b/src/stageinfo.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stageobjects.c b/src/stageobjects.c index b7a76799..e5dad73e 100644 --- a/src/stageobjects.c +++ b/src/stageobjects.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stageobjects.h" #include "projectile.h" #include "item.h" diff --git a/src/stageobjects.h b/src/stageobjects.h index f24be9f4..6b5dfe6c 100644 --- a/src/stageobjects.h +++ b/src/stageobjects.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/dpstest.c b/src/stages/dpstest.c index 8d2c59ce..55c6fefa 100644 --- a/src/stages/dpstest.c +++ b/src/stages/dpstest.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "dpstest.h" #include "global.h" #include "enemy.h" diff --git a/src/stages/dpstest.h b/src/stages/dpstest.h index 89d17221..51dd219c 100644 --- a/src/stages/dpstest.h +++ b/src/stages/dpstest.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/entities.h b/src/stages/entities.h index 036544a0..e898528b 100644 --- a/src/stages/entities.h +++ b/src/stages/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/extra.c b/src/stages/extra.c index 624ee411..b715817b 100644 --- a/src/stages/extra.c +++ b/src/stages/extra.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "extra.h" // NOTE: See the 'yumemi' branch for the work-in-progress extra stage diff --git a/src/stages/extra.h b/src/stages/extra.h index 6ff34abd..07f245fd 100644 --- a/src/stages/extra.h +++ b/src/stages/extra.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage1/background_anim.c b/src/stages/stage1/background_anim.c index 88821bde..5d3780f8 100644 --- a/src/stages/stage1/background_anim.c +++ b/src/stages/stage1/background_anim.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "background_anim.h" #include "draw.h" diff --git a/src/stages/stage1/background_anim.h b/src/stages/stage1/background_anim.h index 97c53500..67ea5e70 100644 --- a/src/stages/stage1/background_anim.h +++ b/src/stages/stage1/background_anim.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage1/cirno.c b/src/stages/stage1/cirno.c index ace40d9e..86f93d22 100644 --- a/src/stages/stage1/cirno.c +++ b/src/stages/stage1/cirno.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "cirno.h" diff --git a/src/stages/stage1/cirno.h b/src/stages/stage1/cirno.h index 7bf25545..660f5c71 100644 --- a/src/stages/stage1/cirno.h +++ b/src/stages/stage1/cirno.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage1/draw.c b/src/stages/stage1/draw.c index 1a4520a7..d4b6c1f5 100644 --- a/src/stages/stage1/draw.c +++ b/src/stages/stage1/draw.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "draw.h" diff --git a/src/stages/stage1/draw.h b/src/stages/stage1/draw.h index a5fcbfb1..d66c1a28 100644 --- a/src/stages/stage1/draw.h +++ b/src/stages/stage1/draw.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage1/entities.h b/src/stages/stage1/entities.h index 0a241e70..8c56e7f2 100644 --- a/src/stages/stage1/entities.h +++ b/src/stages/stage1/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage1/misc.c b/src/stages/stage1/misc.c index 04b8b71c..5ac03dd3 100644 --- a/src/stages/stage1/misc.c +++ b/src/stages/stage1/misc.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "misc.h" diff --git a/src/stages/stage1/misc.h b/src/stages/stage1/misc.h index e1694ba1..dc7f9c4a 100644 --- a/src/stages/stage1/misc.h +++ b/src/stages/stage1/misc.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage1/nonspells/boss_nonspell_1.c b/src/stages/stage1/nonspells/boss_nonspell_1.c index d6a717b3..ddc0acc0 100644 --- a/src/stages/stage1/nonspells/boss_nonspell_1.c +++ b/src/stages/stage1/nonspells/boss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../cirno.h" diff --git a/src/stages/stage1/nonspells/boss_nonspell_2.c b/src/stages/stage1/nonspells/boss_nonspell_2.c index 920dedb5..fca3469e 100644 --- a/src/stages/stage1/nonspells/boss_nonspell_2.c +++ b/src/stages/stage1/nonspells/boss_nonspell_2.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../cirno.h" diff --git a/src/stages/stage1/nonspells/midboss_nonspell_1.c b/src/stages/stage1/nonspells/midboss_nonspell_1.c index c492dbad..f0a241ba 100644 --- a/src/stages/stage1/nonspells/midboss_nonspell_1.c +++ b/src/stages/stage1/nonspells/midboss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../cirno.h" diff --git a/src/stages/stage1/nonspells/nonspells.h b/src/stages/stage1/nonspells/nonspells.h index b9aa1ca0..2dcec0c1 100644 --- a/src/stages/stage1/nonspells/nonspells.h +++ b/src/stages/stage1/nonspells/nonspells.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage1/spells/benchmark.c b/src/stages/stage1/spells/benchmark.c index 85ea1598..be0ab530 100644 --- a/src/stages/stage1/spells/benchmark.c +++ b/src/stages/stage1/spells/benchmark.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../cirno.h" diff --git a/src/stages/stage1/spells/crystal_blizzard.c b/src/stages/stage1/spells/crystal_blizzard.c index ecc304bc..2f0ffcd9 100644 --- a/src/stages/stage1/spells/crystal_blizzard.c +++ b/src/stages/stage1/spells/crystal_blizzard.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../cirno.h" diff --git a/src/stages/stage1/spells/crystal_rain.c b/src/stages/stage1/spells/crystal_rain.c index c68044ea..70875bc2 100644 --- a/src/stages/stage1/spells/crystal_rain.c +++ b/src/stages/stage1/spells/crystal_rain.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../cirno.h" diff --git a/src/stages/stage1/spells/icicle_cascade.c b/src/stages/stage1/spells/icicle_cascade.c index 135a1195..340682d6 100644 --- a/src/stages/stage1/spells/icicle_cascade.c +++ b/src/stages/stage1/spells/icicle_cascade.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../cirno.h" diff --git a/src/stages/stage1/spells/perfect_freeze.c b/src/stages/stage1/spells/perfect_freeze.c index 6d299d66..9ed9eb80 100644 --- a/src/stages/stage1/spells/perfect_freeze.c +++ b/src/stages/stage1/spells/perfect_freeze.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../cirno.h" diff --git a/src/stages/stage1/spells/snow_halation.c b/src/stages/stage1/spells/snow_halation.c index d64ca4ed..ce69bcf8 100644 --- a/src/stages/stage1/spells/snow_halation.c +++ b/src/stages/stage1/spells/snow_halation.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../cirno.h" diff --git a/src/stages/stage1/spells/spells.h b/src/stages/stage1/spells/spells.h index 65acd5a2..f1ba8dd6 100644 --- a/src/stages/stage1/spells/spells.h +++ b/src/stages/stage1/spells/spells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage1/stage1.c b/src/stages/stage1/stage1.c index 48a68d51..f01e4203 100644 --- a/src/stages/stage1/stage1.c +++ b/src/stages/stage1/stage1.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stage1.h" #include "draw.h" #include "background_anim.h" diff --git a/src/stages/stage1/stage1.h b/src/stages/stage1/stage1.h index 915fb3cd..0912fb93 100644 --- a/src/stages/stage1/stage1.h +++ b/src/stages/stage1/stage1.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage1/timeline.c b/src/stages/stage1/timeline.c index 17cfb118..446e7d4d 100644 --- a/src/stages/stage1/timeline.c +++ b/src/stages/stage1/timeline.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "timeline.h" #include "stage1.h" #include "cirno.h" diff --git a/src/stages/stage1/timeline.h b/src/stages/stage1/timeline.h index 0dcd5c73..f63a3f9d 100644 --- a/src/stages/stage1/timeline.h +++ b/src/stages/stage1/timeline.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/background_anim.c b/src/stages/stage2/background_anim.c index 53f76eae..39586eae 100644 --- a/src/stages/stage2/background_anim.c +++ b/src/stages/stage2/background_anim.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "background_anim.h" #include "draw.h" diff --git a/src/stages/stage2/background_anim.h b/src/stages/stage2/background_anim.h index 65ac988b..1ff369c5 100644 --- a/src/stages/stage2/background_anim.h +++ b/src/stages/stage2/background_anim.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/draw.c b/src/stages/stage2/draw.c index a4244093..8e0db898 100644 --- a/src/stages/stage2/draw.c +++ b/src/stages/stage2/draw.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "draw.h" diff --git a/src/stages/stage2/draw.h b/src/stages/stage2/draw.h index 74a5687e..f891530f 100644 --- a/src/stages/stage2/draw.h +++ b/src/stages/stage2/draw.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/entities.h b/src/stages/stage2/entities.h index 8fc7f907..0678359a 100644 --- a/src/stages/stage2/entities.h +++ b/src/stages/stage2/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/hina.c b/src/stages/stage2/hina.c index d3c52a7f..8c64ec6a 100644 --- a/src/stages/stage2/hina.c +++ b/src/stages/stage2/hina.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "hina.h" diff --git a/src/stages/stage2/hina.h b/src/stages/stage2/hina.h index 7c43eb7d..b9780093 100644 --- a/src/stages/stage2/hina.h +++ b/src/stages/stage2/hina.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/nonspells/boss_nonspell_1.c b/src/stages/stage2/nonspells/boss_nonspell_1.c index da34ab87..b5fc4045 100644 --- a/src/stages/stage2/nonspells/boss_nonspell_1.c +++ b/src/stages/stage2/nonspells/boss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage2/nonspells/boss_nonspell_2.c b/src/stages/stage2/nonspells/boss_nonspell_2.c index face76a2..afc3f83c 100644 --- a/src/stages/stage2/nonspells/boss_nonspell_2.c +++ b/src/stages/stage2/nonspells/boss_nonspell_2.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage2/nonspells/boss_nonspell_3.c b/src/stages/stage2/nonspells/boss_nonspell_3.c index a35ceeb8..8775a453 100644 --- a/src/stages/stage2/nonspells/boss_nonspell_3.c +++ b/src/stages/stage2/nonspells/boss_nonspell_3.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../hina.h" diff --git a/src/stages/stage2/nonspells/midboss_nonspell_1.c b/src/stages/stage2/nonspells/midboss_nonspell_1.c index 4f84f49d..fcd48bc6 100644 --- a/src/stages/stage2/nonspells/midboss_nonspell_1.c +++ b/src/stages/stage2/nonspells/midboss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage2/nonspells/nonspells.h b/src/stages/stage2/nonspells/nonspells.h index 3dd4d0e3..a97f8b7a 100644 --- a/src/stages/stage2/nonspells/nonspells.h +++ b/src/stages/stage2/nonspells/nonspells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/spells/amulet_of_harm.c b/src/stages/stage2/spells/amulet_of_harm.c index 60b1da9a..cb508c95 100644 --- a/src/stages/stage2/spells/amulet_of_harm.c +++ b/src/stages/stage2/spells/amulet_of_harm.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage2/spells/bad_pick.c b/src/stages/stage2/spells/bad_pick.c index b7db7532..ee05145d 100644 --- a/src/stages/stage2/spells/bad_pick.c +++ b/src/stages/stage2/spells/bad_pick.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage2/spells/monty_hall_danmaku.c b/src/stages/stage2/spells/monty_hall_danmaku.c index 22553b31..8f8c52fb 100644 --- a/src/stages/stage2/spells/monty_hall_danmaku.c +++ b/src/stages/stage2/spells/monty_hall_danmaku.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage2/spells/spells.h b/src/stages/stage2/spells/spells.h index 5cb54683..163374f9 100644 --- a/src/stages/stage2/spells/spells.h +++ b/src/stages/stage2/spells/spells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/spells/wheel_of_fortune.c b/src/stages/stage2/spells/wheel_of_fortune.c index a4d33309..b4ace20d 100644 --- a/src/stages/stage2/spells/wheel_of_fortune.c +++ b/src/stages/stage2/spells/wheel_of_fortune.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage2/stage2.c b/src/stages/stage2/stage2.c index 8866d7e0..bd6c03d7 100644 --- a/src/stages/stage2/stage2.c +++ b/src/stages/stage2/stage2.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stage2.h" #include "spells/spells.h" diff --git a/src/stages/stage2/stage2.h b/src/stages/stage2/stage2.h index 60dac837..375fbf60 100644 --- a/src/stages/stage2/stage2.h +++ b/src/stages/stage2/stage2.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/timeline.c b/src/stages/stage2/timeline.c index 7171d763..9ce35c9c 100644 --- a/src/stages/stage2/timeline.c +++ b/src/stages/stage2/timeline.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "timeline.h" #include "wriggle.h" diff --git a/src/stages/stage2/timeline.h b/src/stages/stage2/timeline.h index c89ac08f..35b05ab9 100644 --- a/src/stages/stage2/timeline.h +++ b/src/stages/stage2/timeline.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage2/wriggle.c b/src/stages/stage2/wriggle.c index 1a471bf7..a50f1566 100644 --- a/src/stages/stage2/wriggle.c +++ b/src/stages/stage2/wriggle.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "wriggle.h" diff --git a/src/stages/stage2/wriggle.h b/src/stages/stage2/wriggle.h index a2f62360..51230e28 100644 --- a/src/stages/stage2/wriggle.h +++ b/src/stages/stage2/wriggle.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage3/background_anim.c b/src/stages/stage3/background_anim.c index a9ab5cc4..b6be225e 100644 --- a/src/stages/stage3/background_anim.c +++ b/src/stages/stage3/background_anim.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "background_anim.h" #include "draw.h" diff --git a/src/stages/stage3/background_anim.h b/src/stages/stage3/background_anim.h index ef5b1ad1..e7a879ef 100644 --- a/src/stages/stage3/background_anim.h +++ b/src/stages/stage3/background_anim.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage3/draw.c b/src/stages/stage3/draw.c index cfcf158d..04c934da 100644 --- a/src/stages/stage3/draw.c +++ b/src/stages/stage3/draw.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "draw.h" #include "stagedraw.h" diff --git a/src/stages/stage3/draw.h b/src/stages/stage3/draw.h index 2967bfe9..c89d90a0 100644 --- a/src/stages/stage3/draw.h +++ b/src/stages/stage3/draw.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage3/entities.h b/src/stages/stage3/entities.h index 9a39dd32..8d88674d 100644 --- a/src/stages/stage3/entities.h +++ b/src/stages/stage3/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage3/nonspells/boss_nonspells.c b/src/stages/stage3/nonspells/boss_nonspells.c index 2d32ad86..ee3772ec 100644 --- a/src/stages/stage3/nonspells/boss_nonspells.c +++ b/src/stages/stage3/nonspells/boss_nonspells.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../wriggle.h" diff --git a/src/stages/stage3/nonspells/midboss_nonspell_1.c b/src/stages/stage3/nonspells/midboss_nonspell_1.c index e3972f31..037f61f3 100644 --- a/src/stages/stage3/nonspells/midboss_nonspell_1.c +++ b/src/stages/stage3/nonspells/midboss_nonspell_1.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "nonspells.h" #include "../scuttle.h" diff --git a/src/stages/stage3/nonspells/nonspells.h b/src/stages/stage3/nonspells/nonspells.h index 7f44cd35..03a10906 100644 --- a/src/stages/stage3/nonspells/nonspells.h +++ b/src/stages/stage3/nonspells/nonspells.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage3/scuttle.c b/src/stages/stage3/scuttle.c index f73b3e02..165dde39 100644 --- a/src/stages/stage3/scuttle.c +++ b/src/stages/stage3/scuttle.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "scuttle.h" #include "common_tasks.h" diff --git a/src/stages/stage3/scuttle.h b/src/stages/stage3/scuttle.h index 5c470f0b..0885688a 100644 --- a/src/stages/stage3/scuttle.h +++ b/src/stages/stage3/scuttle.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage3/spells/firefly_storm.c b/src/stages/stage3/spells/firefly_storm.c index 88547a70..9ebb87d7 100644 --- a/src/stages/stage3/spells/firefly_storm.c +++ b/src/stages/stage3/spells/firefly_storm.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../wriggle.h" diff --git a/src/stages/stage3/spells/light_singularity.c b/src/stages/stage3/spells/light_singularity.c index 6d39de07..d3e86b20 100644 --- a/src/stages/stage3/spells/light_singularity.c +++ b/src/stages/stage3/spells/light_singularity.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../wriggle.h" diff --git a/src/stages/stage3/spells/logic_bomb.c b/src/stages/stage3/spells/logic_bomb.c index 5372d5fe..2d298885 100644 --- a/src/stages/stage3/spells/logic_bomb.c +++ b/src/stages/stage3/spells/logic_bomb.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../scuttle.h" diff --git a/src/stages/stage3/spells/moonlight_rocket.c b/src/stages/stage3/spells/moonlight_rocket.c index 1ffecb05..dff6efb9 100644 --- a/src/stages/stage3/spells/moonlight_rocket.c +++ b/src/stages/stage3/spells/moonlight_rocket.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../wriggle.h" diff --git a/src/stages/stage3/spells/moths_to_a_flame.c b/src/stages/stage3/spells/moths_to_a_flame.c index 6afd2cfc..d7c11283 100644 --- a/src/stages/stage3/spells/moths_to_a_flame.c +++ b/src/stages/stage3/spells/moths_to_a_flame.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../wriggle.h" diff --git a/src/stages/stage3/spells/spells.h b/src/stages/stage3/spells/spells.h index 8382286f..9dae222c 100644 --- a/src/stages/stage3/spells/spells.h +++ b/src/stages/stage3/spells/spells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage3/stage3.c b/src/stages/stage3/stage3.c index e7faa755..49373725 100644 --- a/src/stages/stage3/stage3.c +++ b/src/stages/stage3/stage3.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stage3.h" #include "draw.h" #include "background_anim.h" diff --git a/src/stages/stage3/stage3.h b/src/stages/stage3/stage3.h index c2853fb5..b400da36 100644 --- a/src/stages/stage3/stage3.h +++ b/src/stages/stage3/stage3.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage3/timeline.c b/src/stages/stage3/timeline.c index 2de834d7..ea59cc5b 100644 --- a/src/stages/stage3/timeline.c +++ b/src/stages/stage3/timeline.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "timeline.h" #include "stage3.h" #include "wriggle.h" diff --git a/src/stages/stage3/timeline.h b/src/stages/stage3/timeline.h index 1ac22237..ba9045ad 100644 --- a/src/stages/stage3/timeline.h +++ b/src/stages/stage3/timeline.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage3/wriggle.c b/src/stages/stage3/wriggle.c index fcf7c94d..960715c1 100644 --- a/src/stages/stage3/wriggle.c +++ b/src/stages/stage3/wriggle.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "wriggle.h" #include "common_tasks.h" diff --git a/src/stages/stage3/wriggle.h b/src/stages/stage3/wriggle.h index 3341b456..8a305b0a 100644 --- a/src/stages/stage3/wriggle.h +++ b/src/stages/stage3/wriggle.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage4/background_anim.c b/src/stages/stage4/background_anim.c index 93ebe76d..042fe415 100644 --- a/src/stages/stage4/background_anim.c +++ b/src/stages/stage4/background_anim.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "background_anim.h" #include "draw.h" diff --git a/src/stages/stage4/background_anim.h b/src/stages/stage4/background_anim.h index 7e48bd8d..a8bae812 100644 --- a/src/stages/stage4/background_anim.h +++ b/src/stages/stage4/background_anim.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage4/draw.c b/src/stages/stage4/draw.c index 2b99330d..92b84521 100644 --- a/src/stages/stage4/draw.c +++ b/src/stages/stage4/draw.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "draw.h" #include "stageutils.h" #include "global.h" diff --git a/src/stages/stage4/draw.h b/src/stages/stage4/draw.h index 2c357e44..74f26199 100644 --- a/src/stages/stage4/draw.h +++ b/src/stages/stage4/draw.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage4/entities.h b/src/stages/stage4/entities.h index f4511dd9..dae37bbc 100644 --- a/src/stages/stage4/entities.h +++ b/src/stages/stage4/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage4/kurumi.c b/src/stages/stage4/kurumi.c index fb4aff18..d61ac404 100644 --- a/src/stages/stage4/kurumi.c +++ b/src/stages/stage4/kurumi.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "kurumi.h" diff --git a/src/stages/stage4/kurumi.h b/src/stages/stage4/kurumi.h index 7b194a60..bd78914d 100644 --- a/src/stages/stage4/kurumi.h +++ b/src/stages/stage4/kurumi.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage4/nonspells/boss_nonspell_1.c b/src/stages/stage4/nonspells/boss_nonspell_1.c index 1ef617b7..787d0fe3 100644 --- a/src/stages/stage4/nonspells/boss_nonspell_1.c +++ b/src/stages/stage4/nonspells/boss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../kurumi.h" diff --git a/src/stages/stage4/nonspells/boss_nonspell_2.c b/src/stages/stage4/nonspells/boss_nonspell_2.c index e278f39c..df67eac7 100644 --- a/src/stages/stage4/nonspells/boss_nonspell_2.c +++ b/src/stages/stage4/nonspells/boss_nonspell_2.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../kurumi.h" diff --git a/src/stages/stage4/nonspells/nonspells.h b/src/stages/stage4/nonspells/nonspells.h index 65062e51..994d730e 100644 --- a/src/stages/stage4/nonspells/nonspells.h +++ b/src/stages/stage4/nonspells/nonspells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage4/spells/animate_wall.c b/src/stages/stage4/spells/animate_wall.c index 18954a0d..0c2267c9 100644 --- a/src/stages/stage4/spells/animate_wall.c +++ b/src/stages/stage4/spells/animate_wall.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "spells.h" #include "common_tasks.h" #include "../kurumi.h" diff --git a/src/stages/stage4/spells/blow_the_walls.c b/src/stages/stage4/spells/blow_the_walls.c index b609ed81..8597caf7 100644 --- a/src/stages/stage4/spells/blow_the_walls.c +++ b/src/stages/stage4/spells/blow_the_walls.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "spells.h" #include "common_tasks.h" diff --git a/src/stages/stage4/spells/gate_of_walachia.c b/src/stages/stage4/spells/gate_of_walachia.c index 00ae3d8a..ca8ad1fe 100644 --- a/src/stages/stage4/spells/gate_of_walachia.c +++ b/src/stages/stage4/spells/gate_of_walachia.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "common_tasks.h" #include "spells.h" #include "../kurumi.h" diff --git a/src/stages/stage4/spells/red_spike.c b/src/stages/stage4/spells/red_spike.c index dfb9d6fa..1c9f2878 100644 --- a/src/stages/stage4/spells/red_spike.c +++ b/src/stages/stage4/spells/red_spike.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "spells.h" #include "common_tasks.h" #include "../kurumi.h" diff --git a/src/stages/stage4/spells/spells.h b/src/stages/stage4/spells/spells.h index 35669743..dd79253d 100644 --- a/src/stages/stage4/spells/spells.h +++ b/src/stages/stage4/spells/spells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage4/spells/vampiric_vapour.c b/src/stages/stage4/spells/vampiric_vapour.c index 7e33fb57..91eaa4e0 100644 --- a/src/stages/stage4/spells/vampiric_vapour.c +++ b/src/stages/stage4/spells/vampiric_vapour.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "spells.h" #include "common_tasks.h" #include "../kurumi.h" diff --git a/src/stages/stage4/spells/vlads_army.c b/src/stages/stage4/spells/vlads_army.c index 828113b0..cc3a6969 100644 --- a/src/stages/stage4/spells/vlads_army.c +++ b/src/stages/stage4/spells/vlads_army.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "../kurumi.h" diff --git a/src/stages/stage4/stage4.c b/src/stages/stage4/stage4.c index 23075ef0..a6737c4c 100644 --- a/src/stages/stage4/stage4.c +++ b/src/stages/stage4/stage4.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stage4.h" #include "draw.h" #include "background_anim.h" diff --git a/src/stages/stage4/stage4.h b/src/stages/stage4/stage4.h index 330208f7..4e5a5931 100644 --- a/src/stages/stage4/stage4.h +++ b/src/stages/stage4/stage4.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage4/timeline.c b/src/stages/stage4/timeline.c index ea6c8cc9..e3adef88 100644 --- a/src/stages/stage4/timeline.c +++ b/src/stages/stage4/timeline.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stage4.h" #include "timeline.h" #include "draw.h" diff --git a/src/stages/stage4/timeline.h b/src/stages/stage4/timeline.h index 7e7ec044..7f63941c 100644 --- a/src/stages/stage4/timeline.h +++ b/src/stages/stage4/timeline.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage5/background_anim.c b/src/stages/stage5/background_anim.c index acda439f..6ea33b3e 100644 --- a/src/stages/stage5/background_anim.c +++ b/src/stages/stage5/background_anim.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "background_anim.h" #include "draw.h" diff --git a/src/stages/stage5/background_anim.h b/src/stages/stage5/background_anim.h index 7a0d4bd0..03be1c0e 100644 --- a/src/stages/stage5/background_anim.h +++ b/src/stages/stage5/background_anim.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage5/draw.c b/src/stages/stage5/draw.c index 91080692..d789e986 100644 --- a/src/stages/stage5/draw.c +++ b/src/stages/stage5/draw.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "draw.h" #include "global.h" diff --git a/src/stages/stage5/draw.h b/src/stages/stage5/draw.h index 43d8bf26..6fc2d9eb 100644 --- a/src/stages/stage5/draw.h +++ b/src/stages/stage5/draw.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage5/entities.h b/src/stages/stage5/entities.h index 9cdcf1c4..95436be5 100644 --- a/src/stages/stage5/entities.h +++ b/src/stages/stage5/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage5/iku.c b/src/stages/stage5/iku.c index 1d9a01d8..327a0e97 100644 --- a/src/stages/stage5/iku.c +++ b/src/stages/stage5/iku.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "iku.h" #include "stage5.h" diff --git a/src/stages/stage5/iku.h b/src/stages/stage5/iku.h index 201d9918..a90ea638 100644 --- a/src/stages/stage5/iku.h +++ b/src/stages/stage5/iku.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage5/nonspells/boss_nonspell_1.c b/src/stages/stage5/nonspells/boss_nonspell_1.c index 2c759bed..5b073dd5 100644 --- a/src/stages/stage5/nonspells/boss_nonspell_1.c +++ b/src/stages/stage5/nonspells/boss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage5/nonspells/boss_nonspell_2.c b/src/stages/stage5/nonspells/boss_nonspell_2.c index 02548066..bdb0e1ca 100644 --- a/src/stages/stage5/nonspells/boss_nonspell_2.c +++ b/src/stages/stage5/nonspells/boss_nonspell_2.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage5/nonspells/boss_nonspell_3.c b/src/stages/stage5/nonspells/boss_nonspell_3.c index 253505f3..91b9d213 100644 --- a/src/stages/stage5/nonspells/boss_nonspell_3.c +++ b/src/stages/stage5/nonspells/boss_nonspell_3.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage5/nonspells/nonspells.h b/src/stages/stage5/nonspells/nonspells.h index 7ff2c2c0..ffd85ae0 100644 --- a/src/stages/stage5/nonspells/nonspells.h +++ b/src/stages/stage5/nonspells/nonspells.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage5/spells/artificial_lightning.c b/src/stages/stage5/spells/artificial_lightning.c index 32ef2c0a..f099fa4b 100644 --- a/src/stages/stage5/spells/artificial_lightning.c +++ b/src/stages/stage5/spells/artificial_lightning.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage5/spells/atmospheric_discharge.c b/src/stages/stage5/spells/atmospheric_discharge.c index fe80b075..108ff5e7 100644 --- a/src/stages/stage5/spells/atmospheric_discharge.c +++ b/src/stages/stage5/spells/atmospheric_discharge.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage5/spells/induction.c b/src/stages/stage5/spells/induction.c index 7a3f5fd3..ffd57857 100644 --- a/src/stages/stage5/spells/induction.c +++ b/src/stages/stage5/spells/induction.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage5/spells/natural_cathode.c b/src/stages/stage5/spells/natural_cathode.c index eea7e55b..18dfe6bc 100644 --- a/src/stages/stage5/spells/natural_cathode.c +++ b/src/stages/stage5/spells/natural_cathode.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage5/spells/overload.c b/src/stages/stage5/spells/overload.c index 8f71ac14..3f13c8e1 100644 --- a/src/stages/stage5/spells/overload.c +++ b/src/stages/stage5/spells/overload.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage5/spells/spells.h b/src/stages/stage5/spells/spells.h index 6a3790a6..b8ebd926 100644 --- a/src/stages/stage5/spells/spells.h +++ b/src/stages/stage5/spells/spells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage5/spells/static_bomb.c b/src/stages/stage5/spells/static_bomb.c index c5ed1e06..932414a0 100644 --- a/src/stages/stage5/spells/static_bomb.c +++ b/src/stages/stage5/spells/static_bomb.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage5/stage5.c b/src/stages/stage5/stage5.c index d36b965a..c58e984a 100644 --- a/src/stages/stage5/stage5.c +++ b/src/stages/stage5/stage5.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stage5.h" #include "draw.h" #include "background_anim.h" diff --git a/src/stages/stage5/stage5.h b/src/stages/stage5/stage5.h index 47ed095e..2ba4655c 100644 --- a/src/stages/stage5/stage5.h +++ b/src/stages/stage5/stage5.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage5/timeline.c b/src/stages/stage5/timeline.c index 2cc7904f..c8e57c65 100644 --- a/src/stages/stage5/timeline.c +++ b/src/stages/stage5/timeline.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "timeline.h" #include "stage5.h" #include "background_anim.h" diff --git a/src/stages/stage5/timeline.h b/src/stages/stage5/timeline.h index 7fb7c57e..6e83efd8 100644 --- a/src/stages/stage5/timeline.h +++ b/src/stages/stage5/timeline.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage6/background_anim.c b/src/stages/stage6/background_anim.c index 382a0ff8..d3db7a51 100644 --- a/src/stages/stage6/background_anim.c +++ b/src/stages/stage6/background_anim.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "background_anim.h" #include "draw.h" diff --git a/src/stages/stage6/background_anim.h b/src/stages/stage6/background_anim.h index 0acf4bcc..dcf4b62e 100644 --- a/src/stages/stage6/background_anim.h +++ b/src/stages/stage6/background_anim.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage6/draw.c b/src/stages/stage6/draw.c index cefd2aa1..0ffdcd76 100644 --- a/src/stages/stage6/draw.c +++ b/src/stages/stage6/draw.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "draw.h" #include "global.h" diff --git a/src/stages/stage6/draw.h b/src/stages/stage6/draw.h index 809f2c84..9cce1255 100644 --- a/src/stages/stage6/draw.h +++ b/src/stages/stage6/draw.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage6/elly.c b/src/stages/stage6/elly.c index 3a20273d..dc3d864f 100644 --- a/src/stages/stage6/elly.c +++ b/src/stages/stage6/elly.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "elly.h" #include "draw.h" diff --git a/src/stages/stage6/elly.h b/src/stages/stage6/elly.h index 2a225a7f..4ba5b070 100644 --- a/src/stages/stage6/elly.h +++ b/src/stages/stage6/elly.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage6/entities.h b/src/stages/stage6/entities.h index c9f14f37..c843e8dc 100644 --- a/src/stages/stage6/entities.h +++ b/src/stages/stage6/entities.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage6/nonspells/boss_nonspell_1.c b/src/stages/stage6/nonspells/boss_nonspell_1.c index 4f7c7f0d..b5157b0f 100644 --- a/src/stages/stage6/nonspells/boss_nonspell_1.c +++ b/src/stages/stage6/nonspells/boss_nonspell_1.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "../elly.h" diff --git a/src/stages/stage6/nonspells/boss_nonspell_2.c b/src/stages/stage6/nonspells/boss_nonspell_2.c index 601da814..5e32813b 100644 --- a/src/stages/stage6/nonspells/boss_nonspell_2.c +++ b/src/stages/stage6/nonspells/boss_nonspell_2.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage6/nonspells/boss_nonspell_3.c b/src/stages/stage6/nonspells/boss_nonspell_3.c index e8c54e6a..653fe7e8 100644 --- a/src/stages/stage6/nonspells/boss_nonspell_3.c +++ b/src/stages/stage6/nonspells/boss_nonspell_3.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" #include "stagetext.h" diff --git a/src/stages/stage6/nonspells/boss_nonspell_4.c b/src/stages/stage6/nonspells/boss_nonspell_4.c index 306cbb19..909293e7 100644 --- a/src/stages/stage6/nonspells/boss_nonspell_4.c +++ b/src/stages/stage6/nonspells/boss_nonspell_4.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage6/nonspells/boss_nonspell_5.c b/src/stages/stage6/nonspells/boss_nonspell_5.c index e29731ac..f05b95ca 100644 --- a/src/stages/stage6/nonspells/boss_nonspell_5.c +++ b/src/stages/stage6/nonspells/boss_nonspell_5.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage6/nonspells/boss_nonspell_6.c b/src/stages/stage6/nonspells/boss_nonspell_6.c index 5189f5af..fa7e9060 100644 --- a/src/stages/stage6/nonspells/boss_nonspell_6.c +++ b/src/stages/stage6/nonspells/boss_nonspell_6.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "nonspells.h" diff --git a/src/stages/stage6/nonspells/nonspells.h b/src/stages/stage6/nonspells/nonspells.h index 5ff9be8b..fe91a73e 100644 --- a/src/stages/stage6/nonspells/nonspells.h +++ b/src/stages/stage6/nonspells/nonspells.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage6/spells/broglie.c b/src/stages/stage6/spells/broglie.c index 29ec976e..4706fa4d 100644 --- a/src/stages/stage6/spells/broglie.c +++ b/src/stages/stage6/spells/broglie.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/eigenstate.c b/src/stages/stage6/spells/eigenstate.c index 2e26e552..cfeda9a3 100644 --- a/src/stages/stage6/spells/eigenstate.c +++ b/src/stages/stage6/spells/eigenstate.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/forgotten.c b/src/stages/stage6/spells/forgotten.c index e5e978a4..3d8ae886 100644 --- a/src/stages/stage6/spells/forgotten.c +++ b/src/stages/stage6/spells/forgotten.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/kepler.c b/src/stages/stage6/spells/kepler.c index 1c5c38c4..ac7f7cf4 100644 --- a/src/stages/stage6/spells/kepler.c +++ b/src/stages/stage6/spells/kepler.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/lhc.c b/src/stages/stage6/spells/lhc.c index 1d77e8b6..271c5471 100644 --- a/src/stages/stage6/spells/lhc.c +++ b/src/stages/stage6/spells/lhc.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/maxwell.c b/src/stages/stage6/spells/maxwell.c index 66fdd293..77d984c1 100644 --- a/src/stages/stage6/spells/maxwell.c +++ b/src/stages/stage6/spells/maxwell.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/newton.c b/src/stages/stage6/spells/newton.c index ddff80f7..f710b509 100644 --- a/src/stages/stage6/spells/newton.c +++ b/src/stages/stage6/spells/newton.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/ricci.c b/src/stages/stage6/spells/ricci.c index 3cf592a1..3ff7528d 100644 --- a/src/stages/stage6/spells/ricci.c +++ b/src/stages/stage6/spells/ricci.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" diff --git a/src/stages/stage6/spells/spells.h b/src/stages/stage6/spells/spells.h index 8f38d09b..80d7c57f 100644 --- a/src/stages/stage6/spells/spells.h +++ b/src/stages/stage6/spells/spells.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stages/stage6/spells/toe.c b/src/stages/stage6/spells/toe.c index 9f37fc77..cb29c4e2 100644 --- a/src/stages/stage6/spells/toe.c +++ b/src/stages/stage6/spells/toe.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "spells.h" #include "stagetext.h" diff --git a/src/stages/stage6/stage6.c b/src/stages/stage6/stage6.c index e9c3a75c..07ae0351 100644 --- a/src/stages/stage6/stage6.c +++ b/src/stages/stage6/stage6.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stage6.h" #include "draw.h" diff --git a/src/stages/stage6/stage6.h b/src/stages/stage6/stage6.h index 9653a17f..8e12387e 100644 --- a/src/stages/stage6/stage6.h +++ b/src/stages/stage6/stage6.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stage6/timeline.c b/src/stages/stage6/timeline.c index 2fbb4e00..d4024cfa 100644 --- a/src/stages/stage6/timeline.c +++ b/src/stages/stage6/timeline.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "timeline.h" #include "stage6.h" #include "draw.h" diff --git a/src/stages/stage6/timeline.h b/src/stages/stage6/timeline.h index 2231f4af..ebea5021 100644 --- a/src/stages/stage6/timeline.h +++ b/src/stages/stage6/timeline.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stages/stages.c b/src/stages/stages.c index fdda0b37..d9018cc1 100644 --- a/src/stages/stages.c +++ b/src/stages/stages.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "stages.h" #include "stages/stage1/stage1.h" diff --git a/src/stages/stages.h b/src/stages/stages.h index 80a61c0e..c60efd73 100644 --- a/src/stages/stages.h +++ b/src/stages/stages.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/stagetext.c b/src/stagetext.c index fb790597..7c36444c 100644 --- a/src/stagetext.c +++ b/src/stagetext.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stagetext.h" #include "list.h" #include "global.h" diff --git a/src/stagetext.h b/src/stagetext.h index 37261f69..4bac2235 100644 --- a/src/stagetext.h +++ b/src/stagetext.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stageutils.c b/src/stageutils.c index 336d5bb4..58bc20b6 100644 --- a/src/stageutils.c +++ b/src/stageutils.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stageutils.h" #include "global.h" #include "util/glm.h" diff --git a/src/stageutils.h b/src/stageutils.h index afeabe9d..f20ca2f6 100644 --- a/src/stageutils.h +++ b/src/stageutils.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/stats.c b/src/stats.c index 62cde714..08e10951 100644 --- a/src/stats.c +++ b/src/stats.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stats.h" #include "global.h" diff --git a/src/stats.h b/src/stats.h index 41ff9c07..0df48a25 100644 --- a/src/stats.h +++ b/src/stats.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/taisei.h b/src/taisei.h index 118a61b4..d2eaaae5 100644 --- a/src/taisei.h +++ b/src/taisei.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/taskmanager.c b/src/taskmanager.c index d71b330b..d70dad74 100644 --- a/src/taskmanager.c +++ b/src/taskmanager.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "taskmanager.h" #include "list.h" #include "util.h" diff --git a/src/taskmanager.h b/src/taskmanager.h index 19330c55..9c00663a 100644 --- a/src/taskmanager.h +++ b/src/taskmanager.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/thread.c b/src/thread.c index d3c05443..7caeb2eb 100644 --- a/src/thread.c +++ b/src/thread.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "thread.h" #include "log.h" diff --git a/src/thread.h b/src/thread.h index ed0a0f10..fafe68a4 100644 --- a/src/thread.h +++ b/src/thread.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/transition.c b/src/transition.c index ba7d0c8d..9ee213bc 100644 --- a/src/transition.c +++ b/src/transition.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "transition.h" #include "menu/ingamemenu.h" #include "global.h" diff --git a/src/transition.h b/src/transition.h index cffe6a06..2f9a8705 100644 --- a/src/transition.h +++ b/src/transition.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util.h b/src/util.h index 8865d301..adf4a0e1 100644 --- a/src/util.h +++ b/src/util.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/assert.c b/src/util/assert.c index 26f7d20c..c64c5987 100644 --- a/src/util/assert.c +++ b/src/util/assert.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "assert.h" #include "util.h" #include "log.h" diff --git a/src/util/assert.h b/src/util/assert.h index c2ae80d1..3851029f 100644 --- a/src/util/assert.h +++ b/src/util/assert.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/callchain.h b/src/util/callchain.h index a533a0aa..82f12ad6 100644 --- a/src/util/callchain.h +++ b/src/util/callchain.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/compat.h b/src/util/compat.h index c759404c..ee7aadd2 100644 --- a/src/util/compat.h +++ b/src/util/compat.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/compat_cmplx.h b/src/util/compat_cmplx.h index bf487e45..d2c189a7 100644 --- a/src/util/compat_cmplx.h +++ b/src/util/compat_cmplx.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/consideredharmful.h b/src/util/consideredharmful.h index 7010b81b..482c847e 100644 --- a/src/util/consideredharmful.h +++ b/src/util/consideredharmful.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/crap.c b/src/util/crap.c index 4f9e6060..f8ab4821 100644 --- a/src/util/crap.c +++ b/src/util/crap.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "crap.h" #include "assert.h" diff --git a/src/util/crap.h b/src/util/crap.h index 2c44ebd1..bc6651d9 100644 --- a/src/util/crap.h +++ b/src/util/crap.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/debug.c b/src/util/debug.c index 5026b117..39b6ea05 100644 --- a/src/util/debug.c +++ b/src/util/debug.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "debug.h" #ifndef DEBUG diff --git a/src/util/debug.h b/src/util/debug.h index 3943c2dc..0600e256 100644 --- a/src/util/debug.h +++ b/src/util/debug.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/env.c b/src/util/env.c index fb834ff1..9a2e93a5 100644 --- a/src/util/env.c +++ b/src/util/env.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "env.h" #include "util.h" diff --git a/src/util/env.h b/src/util/env.h index 3601a7d3..a2dc548b 100644 --- a/src/util/env.h +++ b/src/util/env.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/fbmgr.c b/src/util/fbmgr.c index ebf1eb60..8c15e8be 100644 --- a/src/util/fbmgr.c +++ b/src/util/fbmgr.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "fbmgr.h" #include "list.h" diff --git a/src/util/fbmgr.h b/src/util/fbmgr.h index 962faad8..74a53d4f 100644 --- a/src/util/fbmgr.h +++ b/src/util/fbmgr.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/fbpair.c b/src/util/fbpair.c index 35e1680e..df9287e9 100644 --- a/src/util/fbpair.c +++ b/src/util/fbpair.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "fbpair.h" #include "global.h" #include "util.h" diff --git a/src/util/fbpair.h b/src/util/fbpair.h index 8d352c7f..c1804256 100644 --- a/src/util/fbpair.h +++ b/src/util/fbpair.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/fbutil.c b/src/util/fbutil.c index d5695f4c..ab847212 100644 --- a/src/util/fbutil.c +++ b/src/util/fbutil.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "fbutil.h" diff --git a/src/util/fbutil.h b/src/util/fbutil.h index b048f61f..f312ef92 100644 --- a/src/util/fbutil.h +++ b/src/util/fbutil.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/gamemode.c b/src/util/gamemode.c index 1f20b931..13dae08c 100644 --- a/src/util/gamemode.c +++ b/src/util/gamemode.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "gamemode.h" #include "util.h" diff --git a/src/util/gamemode.h b/src/util/gamemode.h index bf233710..bd1773d2 100644 --- a/src/util/gamemode.h +++ b/src/util/gamemode.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/gamemode_stub.c b/src/util/gamemode_stub.c index d2e36360..62fd6320 100644 --- a/src/util/gamemode_stub.c +++ b/src/util/gamemode_stub.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "gamemode.h" #include "util.h" diff --git a/src/util/geometry.c b/src/util/geometry.c index 83cecf2f..e3cf7d51 100644 --- a/src/util/geometry.c +++ b/src/util/geometry.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "geometry.h" #include "miscmath.h" diff --git a/src/util/geometry.h b/src/util/geometry.h index 15c0292c..b00d5d7f 100644 --- a/src/util/geometry.h +++ b/src/util/geometry.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/glm.h b/src/util/glm.h index 3cc40064..f10039d4 100644 --- a/src/util/glm.h +++ b/src/util/glm.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/graphics.c b/src/util/graphics.c index 8b6283a3..1b95c3a1 100644 --- a/src/util/graphics.c +++ b/src/util/graphics.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "graphics.h" #include "global.h" #include "video.h" diff --git a/src/util/graphics.h b/src/util/graphics.h index 12d3a3e1..8540be15 100644 --- a/src/util/graphics.h +++ b/src/util/graphics.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/io.c b/src/util/io.c index d276bf35..ab8e30ae 100644 --- a/src/util/io.c +++ b/src/util/io.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "io.h" #include "log.h" #include "vfs/public.h" diff --git a/src/util/io.h b/src/util/io.h index 0c1d5a19..49c1da1f 100644 --- a/src/util/io.h +++ b/src/util/io.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/kvparser.c b/src/util/kvparser.c index c51c954f..cefd3131 100644 --- a/src/util/kvparser.c +++ b/src/util/kvparser.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "kvparser.h" #include "log.h" #include "stringops.h" diff --git a/src/util/kvparser.h b/src/util/kvparser.h index df26ce31..93dd34d0 100644 --- a/src/util/kvparser.h +++ b/src/util/kvparser.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/libzip_compat.h b/src/util/libzip_compat.h index e4a5b0d2..179aae22 100644 --- a/src/util/libzip_compat.h +++ b/src/util/libzip_compat.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/macrohax.h b/src/util/macrohax.h index 604c8ef8..5b294f23 100644 --- a/src/util/macrohax.h +++ b/src/util/macrohax.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/miscmath.c b/src/util/miscmath.c index f6ecbdf7..69fa4170 100644 --- a/src/util/miscmath.c +++ b/src/util/miscmath.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "miscmath.h" #include "assert.h" diff --git a/src/util/miscmath.h b/src/util/miscmath.h index 6f848847..adac66b7 100644 --- a/src/util/miscmath.h +++ b/src/util/miscmath.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/platform_posix.c b/src/util/platform_posix.c index 62265c90..f690025e 100644 --- a/src/util/platform_posix.c +++ b/src/util/platform_posix.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include "systime.h" diff --git a/src/util/platform_win32.c b/src/util/platform_win32.c index d3750065..a7dbff68 100644 --- a/src/util/platform_win32.c +++ b/src/util/platform_win32.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "systime.h" static time_t win32time_to_posixtime(SYSTEMTIME *wtime) { diff --git a/src/util/pngcruft.c b/src/util/pngcruft.c index 5d0715a0..447346ba 100644 --- a/src/util/pngcruft.c +++ b/src/util/pngcruft.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "pngcruft.h" #include "log.h" diff --git a/src/util/pngcruft.h b/src/util/pngcruft.h index b00c6684..673c056a 100644 --- a/src/util/pngcruft.h +++ b/src/util/pngcruft.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/rectpack.c b/src/util/rectpack.c index 32764ad9..f34a12d4 100644 --- a/src/util/rectpack.c +++ b/src/util/rectpack.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "rectpack.h" #include "util.h" diff --git a/src/util/rectpack.h b/src/util/rectpack.h index 63d57728..81bfb2eb 100644 --- a/src/util/rectpack.h +++ b/src/util/rectpack.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/sha256.c b/src/util/sha256.c index 6dcc112a..a6dc1e68 100644 --- a/src/util/sha256.c +++ b/src/util/sha256.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "sha256.h" #include "util/stringops.h" diff --git a/src/util/sha256.h b/src/util/sha256.h index 225f91a8..15363f71 100644 --- a/src/util/sha256.h +++ b/src/util/sha256.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/sha256_openssl.c b/src/util/sha256_openssl.c index 186d3160..8bc3620a 100644 --- a/src/util/sha256_openssl.c +++ b/src/util/sha256_openssl.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "sha256.h" #include "util.h" diff --git a/src/util/strbuf.c b/src/util/strbuf.c index 88627297..27dc95a1 100644 --- a/src/util/strbuf.c +++ b/src/util/strbuf.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "strbuf.h" #include "util/miscmath.h" diff --git a/src/util/strbuf.h b/src/util/strbuf.h index 7c4931a2..e6ca2631 100644 --- a/src/util/strbuf.h +++ b/src/util/strbuf.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/util/stringops.c b/src/util/stringops.c index 24b6c662..b17aee88 100644 --- a/src/util/stringops.c +++ b/src/util/stringops.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "stringops.h" #include "miscmath.h" #include "assert.h" diff --git a/src/util/stringops.h b/src/util/stringops.h index 99a64fa8..a501ce48 100644 --- a/src/util/stringops.h +++ b/src/util/stringops.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/util/systime.h b/src/util/systime.h index 48cdb27b..5c8f95e9 100644 --- a/src/util/systime.h +++ b/src/util/systime.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/version.c b/src/version.c index a22f7b8b..ead88bb6 100644 --- a/src/version.c +++ b/src/version.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "version.h" int taisei_version_compare(TaiseiVersion *v1, TaiseiVersion *v2, TaiseiVersionCmpLevel level) { diff --git a/src/version.h b/src/version.h index 2f0c52f0..0b62a548 100644 --- a/src/version.h +++ b/src/version.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/version_auto.c.in b/src/version_auto.c.in index 6d1edfd2..b93da333 100644 --- a/src/version_auto.c.in +++ b/src/version_auto.c.in @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "version.h" const char *const TAISEI_VERSION = "${VERSION({string})}"; diff --git a/src/vfs/decompress_wrapper.c b/src/vfs/decompress_wrapper.c index 1d27b5bf..9f3451a2 100644 --- a/src/vfs/decompress_wrapper.c +++ b/src/vfs/decompress_wrapper.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "decompress_wrapper.h" #include "rwops/rwops_ro.h" diff --git a/src/vfs/decompress_wrapper.h b/src/vfs/decompress_wrapper.h index b41d88a8..bbeb2fea 100644 --- a/src/vfs/decompress_wrapper.h +++ b/src/vfs/decompress_wrapper.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/decompress_wrapper_public.h b/src/vfs/decompress_wrapper_public.h index 7cdbadfd..c229112d 100644 --- a/src/vfs/decompress_wrapper_public.h +++ b/src/vfs/decompress_wrapper_public.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/emscripten_fetch.c b/src/vfs/emscripten_fetch.c index 4b63b9f3..9a5060dc 100644 --- a/src/vfs/emscripten_fetch.c +++ b/src/vfs/emscripten_fetch.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "emscripten_fetch.h" #include "emscripten_fetch_public.h" diff --git a/src/vfs/emscripten_fetch.h b/src/vfs/emscripten_fetch.h index f59b758a..4daa4de9 100644 --- a/src/vfs/emscripten_fetch.h +++ b/src/vfs/emscripten_fetch.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/emscripten_fetch_public.h b/src/vfs/emscripten_fetch_public.h index 8ce343d2..9c3f2419 100644 --- a/src/vfs/emscripten_fetch_public.h +++ b/src/vfs/emscripten_fetch_public.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/error.h b/src/vfs/error.h index 5363fbbd..993bc3df 100644 --- a/src/vfs/error.h +++ b/src/vfs/error.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/loadpacks.c b/src/vfs/loadpacks.c index ed622b84..236c846e 100644 --- a/src/vfs/loadpacks.c +++ b/src/vfs/loadpacks.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "loadpacks.h" #include "public.h" #include "setup.h" diff --git a/src/vfs/loadpacks.h b/src/vfs/loadpacks.h index be1f18ee..acc51e03 100644 --- a/src/vfs/loadpacks.h +++ b/src/vfs/loadpacks.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/nodeapi.c b/src/vfs/nodeapi.c index e61da7bd..6892a37b 100644 --- a/src/vfs/nodeapi.c +++ b/src/vfs/nodeapi.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "private.h" #include "rwops/rwops_ro.h" diff --git a/src/vfs/pathutil.c b/src/vfs/pathutil.c index 9bf3308d..6858cd5a 100644 --- a/src/vfs/pathutil.c +++ b/src/vfs/pathutil.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "private.h" #include "syspath.h" diff --git a/src/vfs/pathutil.h b/src/vfs/pathutil.h index dda5c9ee..6db0a78b 100644 --- a/src/vfs/pathutil.h +++ b/src/vfs/pathutil.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/platform_paths/cache_generic.c b/src/vfs/platform_paths/cache_generic.c index 0bf623c3..da8f51ae 100644 --- a/src/vfs/platform_paths/cache_generic.c +++ b/src/vfs/platform_paths/cache_generic.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "platform_paths.h" diff --git a/src/vfs/platform_paths/cache_win32.c b/src/vfs/platform_paths/cache_win32.c index c782feb1..5427c50d 100644 --- a/src/vfs/platform_paths/cache_win32.c +++ b/src/vfs/platform_paths/cache_win32.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "platform_paths.h" #include "util.h" diff --git a/src/vfs/platform_paths/cache_xdg.c b/src/vfs/platform_paths/cache_xdg.c index 30e1098c..2f99ac57 100644 --- a/src/vfs/platform_paths/cache_xdg.c +++ b/src/vfs/platform_paths/cache_xdg.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "platform_paths.h" #include "util.h" diff --git a/src/vfs/platform_paths/platform_paths.h b/src/vfs/platform_paths/platform_paths.h index 7e274b72..31dc1063 100644 --- a/src/vfs/platform_paths/platform_paths.h +++ b/src/vfs/platform_paths/platform_paths.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/platform_paths/resroot_sdl.c b/src/vfs/platform_paths/resroot_sdl.c index 1a6efd48..4000f069 100644 --- a/src/vfs/platform_paths/resroot_sdl.c +++ b/src/vfs/platform_paths/resroot_sdl.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "platform_paths.h" #include "util.h" diff --git a/src/vfs/platform_paths/resroot_static.c b/src/vfs/platform_paths/resroot_static.c index 9c7de03a..71cb4f51 100644 --- a/src/vfs/platform_paths/resroot_static.c +++ b/src/vfs/platform_paths/resroot_static.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "platform_paths.h" diff --git a/src/vfs/platform_paths/storage_sdl.c b/src/vfs/platform_paths/storage_sdl.c index d90a6db6..6d32ccf8 100644 --- a/src/vfs/platform_paths/storage_sdl.c +++ b/src/vfs/platform_paths/storage_sdl.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "platform_paths.h" #include "util.h" diff --git a/src/vfs/private.c b/src/vfs/private.c index b853a2a1..344cf3da 100644 --- a/src/vfs/private.c +++ b/src/vfs/private.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "private.h" #include "vdir.h" diff --git a/src/vfs/private.h b/src/vfs/private.h index e9c5a0a4..d777d208 100644 --- a/src/vfs/private.h +++ b/src/vfs/private.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/public.c b/src/vfs/public.c index 91552363..be077f03 100644 --- a/src/vfs/public.c +++ b/src/vfs/public.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "private.h" typedef struct VFSDir { diff --git a/src/vfs/public.h b/src/vfs/public.h index 3e3558d3..92048c67 100644 --- a/src/vfs/public.h +++ b/src/vfs/public.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/readonly_wrapper.c b/src/vfs/readonly_wrapper.c index be2a42ef..df13244c 100644 --- a/src/vfs/readonly_wrapper.c +++ b/src/vfs/readonly_wrapper.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "readonly_wrapper.h" #include "private.h" #include "rwops/rwops_ro.h" diff --git a/src/vfs/readonly_wrapper.h b/src/vfs/readonly_wrapper.h index 2561c2ca..c7b904b3 100644 --- a/src/vfs/readonly_wrapper.h +++ b/src/vfs/readonly_wrapper.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/readonly_wrapper_public.h b/src/vfs/readonly_wrapper_public.h index c60aba63..8ce85d87 100644 --- a/src/vfs/readonly_wrapper_public.h +++ b/src/vfs/readonly_wrapper_public.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/resindex.c b/src/vfs/resindex.c index 7723b318..ec8dc77e 100644 --- a/src/vfs/resindex.c +++ b/src/vfs/resindex.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "resindex.h" diff --git a/src/vfs/resindex.h b/src/vfs/resindex.h index 41b1ec84..e8f393a3 100644 --- a/src/vfs/resindex.h +++ b/src/vfs/resindex.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/resindex_layered.c b/src/vfs/resindex_layered.c index cb55c227..b1005fb6 100644 --- a/src/vfs/resindex_layered.c +++ b/src/vfs/resindex_layered.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "resindex.h" #include "resindex_layered.h" diff --git a/src/vfs/resindex_layered.h b/src/vfs/resindex_layered.h index c3a810be..077119ba 100644 --- a/src/vfs/resindex_layered.h +++ b/src/vfs/resindex_layered.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/resindex_layered_public.h b/src/vfs/resindex_layered_public.h index 4d4ed649..693cb523 100644 --- a/src/vfs/resindex_layered_public.h +++ b/src/vfs/resindex_layered_public.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/vfs/setup_emscripten.c b/src/vfs/setup_emscripten.c index 9ca14903..f2e6c7df 100644 --- a/src/vfs/setup_emscripten.c +++ b/src/vfs/setup_emscripten.c @@ -7,8 +7,6 @@ * Copyright (c) 2019, p-sam . */ -#include "taisei.h" - #include "setup.h" #include "emscripten_fetch_public.h" #include "decompress_wrapper_public.h" diff --git a/src/vfs/setup_generic.c b/src/vfs/setup_generic.c index 6c11d486..7cc84d10 100644 --- a/src/vfs/setup_generic.c +++ b/src/vfs/setup_generic.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "public.h" #include "setup.h" #include "error.h" diff --git a/src/vfs/setup_switch.c b/src/vfs/setup_switch.c index 235c9c38..3a6f95d8 100644 --- a/src/vfs/setup_switch.c +++ b/src/vfs/setup_switch.c @@ -7,8 +7,6 @@ * Copyright (c) 2019, p-sam . */ -#include "taisei.h" - #include "public.h" #include "setup.h" #include "util.h" diff --git a/src/vfs/sync_emscripten.c b/src/vfs/sync_emscripten.c index 4b5dbaec..5d439e8d 100644 --- a/src/vfs/sync_emscripten.c +++ b/src/vfs/sync_emscripten.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "public.h" #include "util.h" diff --git a/src/vfs/sync_noop.c b/src/vfs/sync_noop.c index 2c502237..18dd7d26 100644 --- a/src/vfs/sync_noop.c +++ b/src/vfs/sync_noop.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "public.h" void vfs_sync(VFSSyncMode mode, CallChain next) { diff --git a/src/vfs/syspath.h b/src/vfs/syspath.h index a3845922..d2d31a1b 100644 --- a/src/vfs/syspath.h +++ b/src/vfs/syspath.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/syspath_posix.c b/src/vfs/syspath_posix.c index 8d7fe139..f7929219 100644 --- a/src/vfs/syspath_posix.c +++ b/src/vfs/syspath_posix.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include #include diff --git a/src/vfs/syspath_public.c b/src/vfs/syspath_public.c index 58098cbb..06980901 100644 --- a/src/vfs/syspath_public.c +++ b/src/vfs/syspath_public.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "syspath.h" #include "readonly_wrapper.h" #include "decompress_wrapper.h" diff --git a/src/vfs/syspath_public.h b/src/vfs/syspath_public.h index 1abce5bc..ae2ca986 100644 --- a/src/vfs/syspath_public.h +++ b/src/vfs/syspath_public.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/syspath_win32.c b/src/vfs/syspath_win32.c index 2ba0436f..c45f6cf2 100644 --- a/src/vfs/syspath_win32.c +++ b/src/vfs/syspath_win32.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include #include #include diff --git a/src/vfs/union.c b/src/vfs/union.c index 1893b757..72ac9291 100644 --- a/src/vfs/union.c +++ b/src/vfs/union.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "union.h" VFS_NODE_TYPE(VFSUnionNode, { diff --git a/src/vfs/union.h b/src/vfs/union.h index 168b244c..01d16172 100644 --- a/src/vfs/union.h +++ b/src/vfs/union.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/union_public.h b/src/vfs/union_public.h index d5b45a7c..a4aae38d 100644 --- a/src/vfs/union_public.h +++ b/src/vfs/union_public.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/vdir.c b/src/vfs/vdir.c index 11e6c088..894549c6 100644 --- a/src/vfs/vdir.c +++ b/src/vfs/vdir.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "vdir.h" VFS_NODE_TYPE(VFSVDirNode, { diff --git a/src/vfs/vdir.h b/src/vfs/vdir.h index a136804f..37dfccb1 100644 --- a/src/vfs/vdir.h +++ b/src/vfs/vdir.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/zipfile.c b/src/vfs/zipfile.c index 50e6d4e6..cf1db736 100644 --- a/src/vfs/zipfile.c +++ b/src/vfs/zipfile.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "zipfile.h" #include "zipfile_impl.h" diff --git a/src/vfs/zipfile.h b/src/vfs/zipfile.h index 504ec2be..47f93c62 100644 --- a/src/vfs/zipfile.h +++ b/src/vfs/zipfile.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/zipfile_impl.h b/src/vfs/zipfile_impl.h index bf45b215..9daf175a 100644 --- a/src/vfs/zipfile_impl.h +++ b/src/vfs/zipfile_impl.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/zipfile_null.c b/src/vfs/zipfile_null.c index 2fdbfdcc..f54ff453 100644 --- a/src/vfs/zipfile_null.c +++ b/src/vfs/zipfile_null.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "zipfile.h" VFSNode *vfs_zipfile_create(VFSNode *source) { diff --git a/src/vfs/zipfile_public.c b/src/vfs/zipfile_public.c index bb8505b6..15b004dd 100644 --- a/src/vfs/zipfile_public.c +++ b/src/vfs/zipfile_public.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "zipfile.h" bool vfs_mount_zipfile(const char *mountpoint, const char *zippath) { diff --git a/src/vfs/zipfile_public.h b/src/vfs/zipfile_public.h index 6f5ca338..6bd0f6e5 100644 --- a/src/vfs/zipfile_public.h +++ b/src/vfs/zipfile_public.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/vfs/zippath.c b/src/vfs/zippath.c index 323ba2f8..2b6bde60 100644 --- a/src/vfs/zippath.c +++ b/src/vfs/zippath.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "zipfile.h" #include "zipfile_impl.h" #include "syspath.h" diff --git a/src/vfs/zippath_rwops.c b/src/vfs/zippath_rwops.c index 69c9f2ff..c3ac30ed 100644 --- a/src/vfs/zippath_rwops.c +++ b/src/vfs/zippath_rwops.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "zipfile_impl.h" #include "rwops/rwops_util.h" diff --git a/src/video.c b/src/video.c index 1d277b2f..9b5f3cad 100644 --- a/src/video.c +++ b/src/video.c @@ -2,12 +2,10 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ -#include "taisei.h" - #include "global.h" #include "video.h" #include "renderer/api.h" diff --git a/src/video.h b/src/video.h index dde9352e..e3c059af 100644 --- a/src/video.h +++ b/src/video.h @@ -2,8 +2,8 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . */ #pragma once diff --git a/src/video_postprocess.c b/src/video_postprocess.c index 126fc7a8..60c3ba0c 100644 --- a/src/video_postprocess.c +++ b/src/video_postprocess.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "log.h" #include "resource/postprocess.h" diff --git a/src/video_postprocess.h b/src/video_postprocess.h index cb01642a..81bd4e9d 100644 --- a/src/video_postprocess.h +++ b/src/video_postprocess.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h" diff --git a/src/watchdog.c b/src/watchdog.c index 07a7fe21..29710f3d 100644 --- a/src/watchdog.c +++ b/src/watchdog.c @@ -2,11 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ - -#include "taisei.h" + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #include "events.h" #include "log.h" diff --git a/src/watchdog.h b/src/watchdog.h index 13d76c01..82daf3b8 100644 --- a/src/watchdog.h +++ b/src/watchdog.h @@ -2,9 +2,9 @@ * This software is licensed under the terms of the MIT License. * See COPYING for further information. * --- - * Copyright (c) 2011-2019, Lukas Weber . - * Copyright (c) 2012-2019, Andrei Alexeyev . -*/ + * Copyright (c) 2011-2024, Lukas Weber . + * Copyright (c) 2012-2024, Andrei Alexeyev . + */ #pragma once #include "taisei.h"