From 9ac1377fd0ea4eee5606ee659662acd58634c2b2 Mon Sep 17 00:00:00 2001
From: miepzerino <o.skotnik@gmail.com>
Date: Mon, 20 Jan 2025 04:12:25 +0000
Subject: [PATCH] Code cleanup

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

diff --git a/Assets/Scripts/AnimationStrings.cs b/Assets/Scripts/AnimationStrings.cs
index ac9b492..1ff84f6 100644
--- a/Assets/Scripts/AnimationStrings.cs
+++ b/Assets/Scripts/AnimationStrings.cs
@@ -5,7 +5,17 @@
 {
     internal class Player
     {
-        internal static string IsMoving = "IsMoving";
-        internal static string IsFlying = "IsFlying";
+        internal static string isMoving = "IsMoving";
+        internal static string isFlying = "IsFlying";
+        public static string isDrillingLeftRight = "IsDrillingLeftRight";
+        public static string isDrillingDown = "IsDrillingDown";
+        public static string timeToDrill = "TimeToDrill";
+
+        internal static string isGrounded = "IsGrounded";
+
+        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