From 5e46fb0c6e33dfedc65124ab9924b9625784f634 Mon Sep 17 00:00:00 2001 From: Clang Robot Date: Mon, 30 Oct 2023 22:33:57 +0000 Subject: [PATCH] :art: Committing clang-format changes --- src/client/systems/System.hpp | 2 +- src/client/systems/bot/System+TriggerBotShoot.cpp | 2 +- src/client/systems/music/System+CreateMusic.cpp | 2 +- src/client/systems/music/System+PlayMusic.cpp | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/client/systems/System.hpp b/src/client/systems/System.hpp index f2ffd1f..c9c51f7 100644 --- a/src/client/systems/System.hpp +++ b/src/client/systems/System.hpp @@ -10,10 +10,10 @@ #include "Components.hpp" #include "EwECS/Event/KeyboardEvent.hpp" #include "EwECS/Event/WindowEvent.hpp" +#include "EwECS/Music/MusicComponent.hpp" #include "EwECS/Physic/HitBox.hpp" #include "EwECS/SFMLDisplayClass/LoadedSprite.hpp" #include "EwECS/Sound/SoundsComponent.hpp" -#include "EwECS/Music/MusicComponent.hpp" #include "EwECS/SparseArray.hpp" #include "EwECS/Utils.hpp" #include "EwECS/World.hpp" diff --git a/src/client/systems/bot/System+TriggerBotShoot.cpp b/src/client/systems/bot/System+TriggerBotShoot.cpp index 3d6c145..2e3e67e 100644 --- a/src/client/systems/bot/System+TriggerBotShoot.cpp +++ b/src/client/systems/bot/System+TriggerBotShoot.cpp @@ -4,13 +4,13 @@ #include "EwECS/Event/EventManager.hpp" #include "EwECS/Logger.hpp" #include "EwECS/SFMLDisplayClass/SFMLDisplayClass.hpp" +#include "EwECS/Sound/Sound.hpp" #include "EwECS/SparseArray.hpp" #include "EwECS/World.hpp" #include "IsAlive.hpp" #include "ServerPackets.hpp" #include "System.hpp" #include "Values.hpp" -#include "EwECS/Sound/Sound.hpp" namespace ECS { void System::triggerBotShoot() diff --git a/src/client/systems/music/System+CreateMusic.cpp b/src/client/systems/music/System+CreateMusic.cpp index 5d5d333..5d047aa 100644 --- a/src/client/systems/music/System+CreateMusic.cpp +++ b/src/client/systems/music/System+CreateMusic.cpp @@ -21,4 +21,4 @@ namespace ECS { music.createMusic("assets/sounds/r-type.ogg"); } } -} +} // namespace ECS diff --git a/src/client/systems/music/System+PlayMusic.cpp b/src/client/systems/music/System+PlayMusic.cpp index 6545031..e40f107 100644 --- a/src/client/systems/music/System+PlayMusic.cpp +++ b/src/client/systems/music/System+PlayMusic.cpp @@ -2,8 +2,8 @@ // Created by beafowl on 30/10/23. // -#include "System.hpp" #include "EwECS/Music/Music.hpp" +#include "System.hpp" namespace ECS { void System::playMusic(ECS::Core::SparseArray &aMusic) @@ -22,4 +22,4 @@ namespace ECS { musicComponent.value()._isPlayed = true; } } -} +} // namespace ECS