From 841af8d8dda9fdb58f52836709031a853324015c Mon Sep 17 00:00:00 2001
From: TheUltimateOptimist <digitalConfidence@web.de>
Date: Mon, 10 Feb 2025 03:09:08 +0100
Subject: [PATCH] added myself to README and author tags in src/game

---
 README.md                | 29 +++++++++++++++++++++++++++++
 src/game/level/Level.cpp |  1 +
 src/game/main.cpp        |  1 +
 3 files changed, 31 insertions(+)

diff --git a/README.md b/README.md
index a9c00b7..d103a17 100644
--- a/README.md
+++ b/README.md
@@ -168,3 +168,32 @@ Nils Jonathan Friedrich Eckardt:
 - TileButton.cpp/hpp
 - TileSelector.cpp/hpp
 - TopBar.cpp
+
+Jonathan Dueck (committer name TheUltimateOptimist):
+
+Allgemein:  
+- Level Editor 
+- Level Laden und Speichern
+- Level Dateiformat
+- LevelEditor Dokumentation (in documentation ordner)
+
+Spezifisch:  
+- src/editor/EventHandler.cpp/hpp
+- src/editor/LevelNameEdit.cpp/hpp
+- src/editor/LevelScene.hpp/cpp 
+  alles ausser setTile, onTileClicked, placeAdvancedTiles, onAdvancedPlacementToggled,
+  onSymmetryToggled, placeCliff, placeRoad, calcDir, isntIdentical  
+  Die genannten Funktionen hat Nils implementiert um Kacheln automatisch setzen (advanced placement) und symmetrisches placement zu realisieren.
+- src/editor/LevelView.cpp/hpp
+- src/editor/main.cpp
+- src/editor/MainWindow.cpp/hpp Nils und ich beide
+- src/editor/SaveButton.cpp/hpp
+- src/editor/SpriteProvider.cpp/hpp
+- src/editor/Tile.cpp/hpp
+- src/editor/TopBar.cpp/hpp gemeinsam mit Nils
+- src/editor/ZoomInButton.cpp/hpp
+- src/editor/ZoomOutButton.cpp/hpp
+- src/editor/ZoomInfo.cpp/hpp
+- src/editor/ZoomOutButton.cpp/hpp
+- in src/game/main.cpp auch noch getLevelFilePath und ersten block in main methode
+- in src/game/level/Level.cpp im Konstruktor das Laden des Levels
diff --git a/src/game/level/Level.cpp b/src/game/level/Level.cpp
index 9972857..e80ba52 100644
--- a/src/game/level/Level.cpp
+++ b/src/game/level/Level.cpp
@@ -7,6 +7,7 @@
  * @author Lorenz Diel
  * @author David Maul
  * @author David Hermann
+ * @author Jonathan Dueck
  */
 
 #include "Level.hpp"
diff --git a/src/game/main.cpp b/src/game/main.cpp
index b78c653..485ee19 100644
--- a/src/game/main.cpp
+++ b/src/game/main.cpp
@@ -3,6 +3,7 @@
  *
  * @author Frederik Keens
  * @author David Maul
+ * @author Jonathan Dueck
  */
 
 #include "core/Engine.hpp"
-- 
GitLab