From a0eb463229794098d4e1ec6cfe3537b320025b56 Mon Sep 17 00:00:00 2001 From: David Maul <david.maul@informatik.hs-fulda.de> Date: Sun, 9 Feb 2025 23:45:02 +0100 Subject: [PATCH 1/3] add authorship of David Maul --- src/game/core/Engine.cpp | 1 + src/game/core/Engine.hpp | 1 + src/game/core/Scene.hpp | 1 + src/game/core/Spritesheet.cpp | 2 +- src/game/core/Spritesheet.hpp | 2 +- src/game/core/Tile.cpp | 1 + src/game/core/Tile.hpp | 1 + src/game/core/Window.cpp | 6 ++++++ src/game/core/Window.hpp | 6 ++++++ src/game/effect/Effect.cpp | 2 +- src/game/effect/Effect.hpp | 1 + src/game/level/Level.cpp | 1 + src/game/main.cpp | 1 + 13 files changed, 23 insertions(+), 3 deletions(-) diff --git a/src/game/core/Engine.cpp b/src/game/core/Engine.cpp index 936e474..e8d4901 100644 --- a/src/game/core/Engine.cpp +++ b/src/game/core/Engine.cpp @@ -1,6 +1,7 @@ /** * Engine.cpp * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/core/Engine.hpp b/src/game/core/Engine.hpp index 431bf01..baf33eb 100644 --- a/src/game/core/Engine.hpp +++ b/src/game/core/Engine.hpp @@ -1,6 +1,7 @@ /** * Engine.hpp * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/core/Scene.hpp b/src/game/core/Scene.hpp index 35d528e..ef0617e 100644 --- a/src/game/core/Scene.hpp +++ b/src/game/core/Scene.hpp @@ -1,6 +1,7 @@ /** * Scene.hpp * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/core/Spritesheet.cpp b/src/game/core/Spritesheet.cpp index 65e927b..f0c49cc 100644 --- a/src/game/core/Spritesheet.cpp +++ b/src/game/core/Spritesheet.cpp @@ -2,8 +2,8 @@ * Spritesheet.hpp * * @date 30.1.2025 - * @author Frederik Keens * @author David Maul + * @author Frederik Keens */ #include "Spritesheet.hpp" diff --git a/src/game/core/Spritesheet.hpp b/src/game/core/Spritesheet.hpp index e3c5e87..f7d337d 100644 --- a/src/game/core/Spritesheet.hpp +++ b/src/game/core/Spritesheet.hpp @@ -2,8 +2,8 @@ * Spritesheet.hpp * * @date 30.1.2025 - * @author Frederik Keens * @author David Maul + * @author Frederik Keens */ #pragma once diff --git a/src/game/core/Tile.cpp b/src/game/core/Tile.cpp index 1ab6b11..ff7877c 100644 --- a/src/game/core/Tile.cpp +++ b/src/game/core/Tile.cpp @@ -1,6 +1,7 @@ /** * Tile.cpp * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/core/Tile.hpp b/src/game/core/Tile.hpp index ad00852..662f52c 100644 --- a/src/game/core/Tile.hpp +++ b/src/game/core/Tile.hpp @@ -1,6 +1,7 @@ /** * Tile.hpp * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/core/Window.cpp b/src/game/core/Window.cpp index f48c378..04a0d08 100644 --- a/src/game/core/Window.cpp +++ b/src/game/core/Window.cpp @@ -1,3 +1,9 @@ +/** + * Window.cpp + * + * @author David Maul + */ + #include "Window.hpp" #include <stdexcept> diff --git a/src/game/core/Window.hpp b/src/game/core/Window.hpp index 55d69ce..36ac6ae 100644 --- a/src/game/core/Window.hpp +++ b/src/game/core/Window.hpp @@ -1,3 +1,9 @@ +/** + * Window.hpp + * + * @author David Maul + */ + #pragma once #include <SDL.h> diff --git a/src/game/effect/Effect.cpp b/src/game/effect/Effect.cpp index f5f86e3..1407e94 100644 --- a/src/game/effect/Effect.cpp +++ b/src/game/effect/Effect.cpp @@ -1,6 +1,6 @@ /** * Effect.cpp - * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/effect/Effect.hpp b/src/game/effect/Effect.hpp index a8e4fba..72d4abf 100644 --- a/src/game/effect/Effect.hpp +++ b/src/game/effect/Effect.hpp @@ -1,6 +1,7 @@ /** * Effect.hpp * + * @author David Maul * @author Frederik Keens */ diff --git a/src/game/level/Level.cpp b/src/game/level/Level.cpp index 63d8550..bb80408 100644 --- a/src/game/level/Level.cpp +++ b/src/game/level/Level.cpp @@ -3,6 +3,7 @@ * * @authors Max Körschen * @author Frederik Keens + * @author David Maul */ #include "Level.hpp" diff --git a/src/game/main.cpp b/src/game/main.cpp index 6ac86bf..b78c653 100644 --- a/src/game/main.cpp +++ b/src/game/main.cpp @@ -2,6 +2,7 @@ * main.cpp * * @author Frederik Keens + * @author David Maul */ #include "core/Engine.hpp" -- GitLab From f65e536136e0cbc9029b85bb95eff0ba0f08fcdd Mon Sep 17 00:00:00 2001 From: David Maul <david.maul@informatik.hs-fulda.de> Date: Sun, 9 Feb 2025 23:47:11 +0100 Subject: [PATCH 2/3] add authorship in README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 8b0fe8a..b957bfc 100644 --- a/README.md +++ b/README.md @@ -106,3 +106,18 @@ Max Körschen: - Building.cpp/hpp (interactions and logic) - level.cpp/hpp (eventhandling for units and buildings, movement, attack etc) - debugging in CombatEngine.cpp/hpp, Bullets.cpp/hpp + +David Maul: +- Engine.cpp/hpp +- Scene.hpp +- Spritesheet.cpp/hpp +- Tile.cpp/hpp +- Window.cpp/hpp +- Effect.cpp/hpp +- Level.cpp/hpp +- main.cpp + + + + + -- GitLab From 13867c708d541ee71e5f4e9ce0f8a39265698f3d Mon Sep 17 00:00:00 2001 From: David Maul <david.maul@informatik.hs-fulda.de> Date: Sun, 9 Feb 2025 23:49:16 +0100 Subject: [PATCH 3/3] add missing author in Level.hpp --- src/game/level/Level.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/game/level/Level.hpp b/src/game/level/Level.hpp index c184f84..9670567 100644 --- a/src/game/level/Level.hpp +++ b/src/game/level/Level.hpp @@ -3,6 +3,7 @@ * * @authors Max Körschen * @author Frederik Keens + * @author David Maul */ #pragma once -- GitLab