From 1d74f3204692bb69aabf3c57fbdf4601a31a311f Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Sat, 16 Dec 2023 18:32:11 +0000
Subject: [PATCH] Added audio manager + sound effects

---
 Assets/Scripts/AnimationStrings.cs |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/Assets/Scripts/AnimationStrings.cs b/Assets/Scripts/AnimationStrings.cs
index ba13bc5..07c2fe6 100644
--- a/Assets/Scripts/AnimationStrings.cs
+++ b/Assets/Scripts/AnimationStrings.cs
@@ -5,12 +5,14 @@
 {
     internal class Player
     {
-        internal static string IsMoving = "IsMoving";
-        internal static string IsFlying = "IsFlying";
+        internal static string isMoving = "IsMoving";
+        internal static string isFlying = "IsFlying";
 
-        internal static string IsGrounded = "IsGrounded";
+        internal static string isGrounded = "IsGrounded";
 
-        public static string IsAtWall = "IsAtWall";
-        public static string IsAtCeiling = "IsAtCeiling";
+        public static string isAtWall = "IsAtWall";
+        public static string isAtCeiling = "IsAtCeiling";
     }
+    public static string isAlive = "IsAlive";
+    public static string canMove = "CanMove";
 }
\ No newline at end of file

--
Gitblit v1.9.3