From 7fbcda681cc68f041126268b026321a07a8a7b07 Mon Sep 17 00:00:00 2001 From: Nanogamer7 <45211068+Nanogamer7@users.noreply.github.com> Date: Sat, 27 Jan 2024 18:19:07 +0100 Subject: [PATCH] Fixes inconsistent indentations on KeyboardController.h --- include/KeyboardController.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/KeyboardController.h b/include/KeyboardController.h index 528b0b1..1466719 100644 --- a/include/KeyboardController.h +++ b/include/KeyboardController.h @@ -20,8 +20,8 @@ public: SpriteComponent* sprite; - //for attack cooldown in between shots - uint32_t lastFireTime; + //for attack cooldown in between shots + uint32_t lastFireTime; uint32_t fireCooldown = 800; //in ms can be adjusted to change possible attack-speed KeyboardController() = default; @@ -35,4 +35,4 @@ private: //for creation of projectiles TransformComponent* player; //for starting position of projectile Vector2D fireVelocity; //decide source of projectile and flying direction -}; \ No newline at end of file +};