diff --git a/src/game/core/Engine.cpp b/src/game/core/Engine.cpp
index 936e47459ad8dc9f7ccc3c527bbfeef6c9f16407..e8d49015897f13506d480fe3c26a88a1c1f2b278 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 431bf0160d7b09bb099e271508570d46950a6c59..baf33eb7a3a6bd5bde1b5be08f7cb5bbe59df257 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 35d528ec19c5943bece0221d9db311f16402fdae..ef0617ed91919dd4de6d828c7e451daa3ddec781 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 65e927bb25f4c46e04c1c5e6962162ab5af49ea1..f0c49cc6ae32d06692062028fa6132792e34aeae 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 e3c5e870f1067371bb3019ee8bf0afe1d2d9d6f4..f7d337d3c4336b18dee14dafa1132e816eb818df 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 1ab6b115b032a1dbda807d1cdc1772ca5edb41c8..ff7877cb71ad1878e3211fafea3b81ff5cf52d3b 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 ad00852278dd15d7a1c016c11eec469e862e2f89..662f52c5580d81c8f7dfcec306c5ef94e33cb4c3 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 f48c378ff5295b2c653b5aae244fb577e9ace00f..04a0d087df9b0048f7d43ecf9fb54d59ce5aabc9 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 55d69ce77c5a5c01308478cf039a8f92538f762a..36ac6ae8a5ac81bc67b6db46d6570c00f0bcb0a9 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 f5f86e35c47c647c2c43fbdd8bf48b2b0cb10dcc..1407e94788fdbb1b96687d4be0d6ce5aeb93a889 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 a8e4fbaff61fc0203739765cfbb62ae647f7a81b..72d4abf9e27113ee677388475c5fb7b750d4504a 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 63d855064381d33b51f3067965fae999bf4339b0..bb80408f28c6fd2471f1e701706f70e307267d25 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 6ac86bf33c0f558c52be57114b422525ec1d4a38..b78c653f3f4a9d558242384b55ecaba15e164a6c 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"