From 59d902df725c2d6a1b7cad016326ca51316b937f Mon Sep 17 00:00:00 2001 From: salaaad2 Date: Tue, 11 Jan 2022 17:06:20 +0100 Subject: clang format blind letsgo ! --- src/entity.hpp | 42 +++++++++++++++++++++--------------------- 1 file changed, 21 insertions(+), 21 deletions(-) (limited to 'src/entity.hpp') diff --git a/src/entity.hpp b/src/entity.hpp index 40818ee..cd92ef9 100644 --- a/src/entity.hpp +++ b/src/entity.hpp @@ -11,30 +11,30 @@ #include "window.hpp" -#include "weapon.hpp" #include +#include "weapon.hpp" class Entity { - public: - int hp; - int radius; - int victims; - int fury; - bool threshold; - float posX; - float posY; - double furyTime; - double reloadTime; - Vector2 direction; - std::map wp; - AWeapon * currentWeapon; - Image img; - Texture2D idleTex; - Texture2D hurtTex; + public: + int hp; + int radius; + int victims; + int fury; + bool threshold; + float posX; + float posY; + double furyTime; + double reloadTime; + Vector2 direction; + std::map wp; + AWeapon* currentWeapon; + Image img; + Texture2D idleTex; + Texture2D hurtTex; - Entity(); - Entity(int const & h); - ~Entity(); + Entity(); + Entity(int const& h); + ~Entity(); }; -#endif // ENEMY_H_ +#endif // ENEMY_H_ -- cgit v1.2.3