]> git.lizzy.rs Git - shadowclad.git/commitdiff
Add copyright and license notices in source code
authoroutfrost <kotlet.bahn@gmail.com>
Thu, 17 Sep 2020 14:13:03 +0000 (16:13 +0200)
committeroutfrost <kotlet.bahn@gmail.com>
Thu, 17 Sep 2020 14:13:03 +0000 (16:13 +0200)
33 files changed:
Makefile
src/engine/_prelude.h
src/engine/asset.c
src/engine/asset.h
src/engine/engine.c
src/engine/engine.h
src/engine/geometry.c
src/engine/geometry.h
src/engine/input.c
src/engine/input.h
src/engine/logger.c
src/engine/logger.h
src/engine/performance.c
src/engine/performance.h
src/engine/render.c
src/engine/render.h
src/engine/scene.c
src/engine/scene.h
src/engine/string.c
src/engine/string.h
src/engine/tga.c
src/engine/tga.h
src/engine/ui.c
src/engine/ui.h
src/game/game.c
src/game/game.h
src/game/input.c
src/game/input.h
src/game/level.c
src/game/level.h
src/game/player.c
src/game/player.h
src/main.c

index 0922628921980f3fd5b96961bd065809a39385b2..3ee9546e99e1a155e3240080867c1248b1e690cc 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,9 @@
+# Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+
 PLATFORM ?= x86_64-linux-gnu
 
 BUILDDIR ?= target/$(PLATFORM)
index a97c9ba2e04821137a64ee09ed3b07c4a3a28c10..9dfebb8e5d77adc4f694281eb7768737db7e4a1f 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_PRELUDE_H_
 #define ENGINE_PRELUDE_H_
 
index 11239acc56be4374299228f7be06d93d7e84cabc..6077b675909be29b61238c1c6c7a6980e8cc6dab 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "asset.h"
 
 #include <math.h>
index dea64c2731c5417e7867af325fb842bd9bb72c7e..7089afe65c6a9126d18395dc7ef6f2062df0ad86 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_ASSET_H_
 #define ENGINE_ASSET_H_
 
index 1e7849f7a33dc45cf85d5409406de78a005bd8d7..991e2c43e4ea0809bb08e155a750ca717e6881b9 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "engine.h"
 
 #include <stdlib.h>
index 1fdcb01ff84352ecaaeb4e9f6ebdbe9d5e2f2a57..d33ffdb22009f5176a160a4729210b58efc461f6 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_ENGINE_H_
 #define ENGINE_ENGINE_H_
 
index c37eb4aecaa60ad8f1df2f5b75593ef3e8d4d264..3809d99dedce111f09028e2cbb7e6340d54a9db2 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "geometry.h"
 
 #include <math.h>
index 38dd5e6b9ce6ae5597509deaf5d3b66a8987c923..24ffccf622fdee4f14a30012a0ba97dadb888822 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_GEOMETRY_H_
 #define ENGINE_GEOMETRY_H_
 
index df33578353e1d0f74b4489df1a6960ca9e111bbe..00eb8cb9ee3a664ae92d64bc9f2db3d73e7ff780 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "input.h"
 
 #include <stdbool.h>
index 0a8880b7b461a8c978e7df3bd98a60c1488b82f4..b8c7f4e65dd9d46ce8935f4fadfd0c6b2ffb9156 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_INPUT_H
 #define ENGINE_INPUT_H
 
index 56ddd4c41c1f3eafe43a379ee4d1510cdb30af3b..4c37666d3e0a3bf46ddc2aba97b3a2e430388955 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "logger.h"
 
 #include <stdarg.h>
index c6dc80825e80d1f16301e9f63071c445c1d995c9..af020062f8a8d44b59b0c26ad8575529d58ff00d 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_LOGGER_H_
 #define ENGINE_LOGGER_H_
 
index 2ff7084cfd1a170ab35404012cebc187694eec89..98720ccfb472d09e8b5988f10849277182320416 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef _POSIX_C_SOURCE
 #define _POSIX_C_SOURCE 199309L
 #endif
index 5f8df7294ce72b0093506b943c35d5845d87fe66..66d419eaeda93d9639f4b858cbdae3e2ec049ced 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_PERFORMANCE_H_
 #define ENGINE_PERFORMANCE_H_
 
index 616b971ce14e4c3fc067796b0a94cbfa81c2cfdc..df1c240c40dd05f5920da1fbd9f9c0f64ed92ec3 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "render.h"
 
 #include "geometry.h"
index f1b40a1061c45b5690d8d6731540991950e6f9da..3e7d104b36291d5f6f61b7c36ce7dfab76c68cc7 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_RENDER_H_
 #define ENGINE_RENDER_H_
 
index a95dbec2fbce53ffc73c248a530f828e1317f2b0..fa7640a899bd1d048055eabb5087b997301b8f43 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "scene.h"
 
 #include <stdlib.h>
index 895e0352433a48b328ed67482983778758b1ae0f..6ea1e684cbcfc2ea1bc3830acdcf1cb103c4df87 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_SCENE_H_
 #define ENGINE_SCENE_H_
 
index 04ad0dbe1edee1418c66fc031739d9db5cd3c16d..0eb80b591c0ce29e50c44df92ee0df8d1ab5677a 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "string.h"
 
 #include <stdlib.h>
index 92409c32bafe0416da1a9d86cb1f5504f381e7e6..5d0f174ac783b9bd8646494ce3897521c76c5f0c 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_STRING_H_
 #define ENGINE_STRING_H_
 
index 8ad5725f6c77e65b0837395c292964b8fbae4fd5..0b493292d36129ff82dac81e825906c0041ac204 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "tga.h"
 
 #include <stdio.h>
index 01e9ca88c10664c29f8b472f0573348799b8bd96..e6e086d68a24f758a296c2fff02be0e13a24fec3 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_TGA_H_
 #define ENGINE_TGA_H_
 
index 3bd283a17be5efa0af881ec9a057c33e8ac3a08f..52eec72e69d4e05cfaef9d9e1ce9871dda8ae77c 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "ui.h"
 
 #include "_prelude.h"
index 7e33b4f1a23df5f0a0ac004fcdac123d79d40c8b..01b1ac141e3bad135304c4b9a8c5f07fc0e70f1f 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef ENGINE_UI_H_
 #define ENGINE_UI_H_
 
index 25b1c30d8550183dd4b6cbfddd3d169fe659d1a4..3e3d31b61527b3c58d62c0f856dd5e54f6de8864 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "game.h"
 
 #include "engine/input.h"
index 774284614689d24db183d755cfa772f2edd0a510..f0f71a846e696fd9a761e20ecc280d3d32136df6 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef GAME_H_
 #define GAME_H_
 
index 089291a7c5dfb485d02d382b7da081863747d787..ee48154f0ff873b94cf506a1ebfc2597604a2300 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "input.h"
 
 #include <GLFW/glfw3.h>
index a354574b9b72c47c7bfbbf0e2a48a6e3dc286c70..14d5a53383b5280cc49463f56f4c4d844536e0b3 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef INPUT_H_
 #define INPUT_H_
 
index b9a6b5884ec16b72bceaf0bfb64b45510cc90f05..2c8e78753ff4b8772ebc9cf5de7ee40eae8c1d40 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "level.h"
 
 #include <stdlib.h>
index cca8a8e469202e0a54e8c52a8486c4ac80e7f062..1b9eaacc14e0fae9cbbb4705e7a90cc8b1c49752 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef LEVEL_H_
 #define LEVEL_H_
 
index 636b130603dfc820218d5898150bad36af2049f2..6731107ffce81da9055beb9cc21e825af06d1f2a 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "player.h"
 
 #include "engine/asset.h"
index 2515d1da4538f1596559f157f1f2f7543f1e0eb5..d410654a99dd834364b6fbaf1260a837cd3b9054 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2019-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #ifndef PLAYER_H_
 #define PLAYER_H_
 
index 6cd21f0077b962b69783a200b7dea9eae43a47fa..4d48f2509bcf1e55a4a1721f256d2b15c68a094b 100644 (file)
@@ -1,3 +1,11 @@
+/**
+ * Copyright 2018-2020 Iwo 'Outfrost' Bujkiewicz
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
 #include "engine/engine.h"
 
 #include "game/game.h"