diff --git a/src/game/core/Engine.cpp b/src/game/core/Engine.cpp index 52674cb4793c7625acf46c70f9b3ff01b2345e23..936e47459ad8dc9f7ccc3c527bbfeef6c9f16407 100644 --- a/src/game/core/Engine.cpp +++ b/src/game/core/Engine.cpp @@ -1,3 +1,9 @@ +/** + * Engine.cpp + * + * @author Frederik Keens + */ + #include "Engine.hpp" #include "GameManager.hpp" #include "Scene.hpp" diff --git a/src/game/core/Engine.hpp b/src/game/core/Engine.hpp index 370e495e885de42b5d6d98ed773b8ed87af3d2ae..431bf0160d7b09bb099e271508570d46950a6c59 100644 --- a/src/game/core/Engine.hpp +++ b/src/game/core/Engine.hpp @@ -1,3 +1,9 @@ +/** + * Engine.hpp + * + * @author Frederik Keens + */ + #pragma once #include "Config.hpp" diff --git a/src/game/core/Scene.hpp b/src/game/core/Scene.hpp index 0b1d6e85676cd3fe2fe902f197f59d716009bf43..35d528ec19c5943bece0221d9db311f16402fdae 100644 --- a/src/game/core/Scene.hpp +++ b/src/game/core/Scene.hpp @@ -1,3 +1,9 @@ +/** + * Scene.hpp + * + * @author Frederik Keens + */ + #pragma once #include "Engine.hpp" diff --git a/src/game/core/Tile.cpp b/src/game/core/Tile.cpp index dd2c05a10729c56baec4b508fb5af857fd8381dd..1ab6b115b032a1dbda807d1cdc1772ca5edb41c8 100644 --- a/src/game/core/Tile.cpp +++ b/src/game/core/Tile.cpp @@ -1,3 +1,9 @@ +/** + * Tile.cpp + * + * @author Frederik Keens + */ + #include "Tile.hpp" #include "Spritesheet.hpp" diff --git a/src/game/core/Tile.hpp b/src/game/core/Tile.hpp index e467b2d213c5efbc843880807f37810a9639d944..ad00852278dd15d7a1c016c11eec469e862e2f89 100644 --- a/src/game/core/Tile.hpp +++ b/src/game/core/Tile.hpp @@ -1,3 +1,9 @@ +/** + * Tile.hpp + * + * @author Frederik Keens + */ + #pragma once #include "Engine.hpp" diff --git a/src/game/effect/Effect.cpp b/src/game/effect/Effect.cpp index 7794fa600206a2516fc41c30aa28cccd560fcd66..f5f86e35c47c647c2c43fbdd8bf48b2b0cb10dcc 100644 --- a/src/game/effect/Effect.cpp +++ b/src/game/effect/Effect.cpp @@ -1,3 +1,9 @@ +/** + * Effect.cpp + * + * @author Frederik Keens + */ + #include "Effect.hpp" #include "../core/Spritesheet.hpp" diff --git a/src/game/effect/Effect.hpp b/src/game/effect/Effect.hpp index 6e0dc91365b573b3726db6ad76f500a0e54ceed1..a8e4fbaff61fc0203739765cfbb62ae647f7a81b 100644 --- a/src/game/effect/Effect.hpp +++ b/src/game/effect/Effect.hpp @@ -1,3 +1,9 @@ +/** + * Effect.hpp + * + * @author Frederik Keens + */ + #pragma once #include "../core/Engine.hpp" diff --git a/src/game/entities/Building.cpp b/src/game/entities/Building.cpp index c084ed32bcc3d1ada1fd2d84114aef339f2fda40..bf7ff17eb36a84a99375207c83eef86412fe6548 100644 --- a/src/game/entities/Building.cpp +++ b/src/game/entities/Building.cpp @@ -1,5 +1,8 @@ /** + * Building.cpp + * * @authors Max Körschen + * @author Frederik Keens */ #include "Building.hpp" diff --git a/src/game/entities/Building.hpp b/src/game/entities/Building.hpp index c070f55a01cd0379472f8de1af25bc936c95afdc..22b202c840e5e6e468d8082e8fabacf28c29e29b 100644 --- a/src/game/entities/Building.hpp +++ b/src/game/entities/Building.hpp @@ -1,5 +1,8 @@ /** + * Building.hpp + * * @authors Max Körschen + * @author Frederik Keens */ #pragma once diff --git a/src/game/entities/Unit.cpp b/src/game/entities/Unit.cpp index 13ae2bd353403d0df0000b890f042cd12fb43000..77244f67300be4bf46354d62d4f063e2e6cd2d66 100644 --- a/src/game/entities/Unit.cpp +++ b/src/game/entities/Unit.cpp @@ -1,5 +1,8 @@ /** + * Unit.cpp + * * @authors Max Körschen + * @author Frederik Keens */ #include "Unit.hpp" diff --git a/src/game/entities/Unit.hpp b/src/game/entities/Unit.hpp index 0cafd204221fd9000519e839d53bd8bb222b6538..1c84e1e96a40b65082e49057cccbc4a594744163 100644 --- a/src/game/entities/Unit.hpp +++ b/src/game/entities/Unit.hpp @@ -1,5 +1,8 @@ /** + * Unit.hpp + * * @authors Max Körschen + * @author Frederik Keens */ #pragma once diff --git a/src/game/level/Level.cpp b/src/game/level/Level.cpp index a2217d51474b86be251c197a6f15834e1b0f2daf..63d855064381d33b51f3067965fae999bf4339b0 100644 --- a/src/game/level/Level.cpp +++ b/src/game/level/Level.cpp @@ -1,5 +1,8 @@ /** + * Level.cpp + * * @authors Max Körschen + * @author Frederik Keens */ #include "Level.hpp" diff --git a/src/game/level/Level.hpp b/src/game/level/Level.hpp index b81075e3321397bdd9550b4a5ae6e76f59fd7a45..c184f84dc91b6ad08de0c9524c22caa6b546b088 100644 --- a/src/game/level/Level.hpp +++ b/src/game/level/Level.hpp @@ -1,5 +1,8 @@ /** + * Level.hpp + * * @authors Max Körschen + * @author Frederik Keens */ #pragma once diff --git a/src/game/main.cpp b/src/game/main.cpp index 395ecf0e04592383558a4017e7e64af50b82dab3..6ac86bf33c0f558c52be57114b422525ec1d4a38 100644 --- a/src/game/main.cpp +++ b/src/game/main.cpp @@ -1,3 +1,9 @@ +/** + * main.cpp + * + * @author Frederik Keens + */ + #include "core/Engine.hpp" #include "core/Spritesheet.hpp" #include "core/Window.hpp" diff --git a/src/game/player/Player.cpp b/src/game/player/Player.cpp index 84a081edfc0e1eab3a9ac8035d792c67238dce67..32ff5e6a12eb6e1161fa26a4675d44da18101664 100644 --- a/src/game/player/Player.cpp +++ b/src/game/player/Player.cpp @@ -1,3 +1,9 @@ +/** + * Player.cpp + * + * @author Frederik Keens + */ + #include "Player.hpp" #include <iostream> diff --git a/src/game/player/Player.hpp b/src/game/player/Player.hpp index 83b0d27aa034d9253ec9ffb833994906c8853a00..03eea58effb3cbb985a9a2cfeb3767dfaf5e318e 100644 --- a/src/game/player/Player.hpp +++ b/src/game/player/Player.hpp @@ -1,3 +1,9 @@ +/** + * Player.hpp + * + * @author Frederik Keens + */ + #pragma once #include "../entities/Building.hpp"