From fa60b5e8b1fed4dc7d0f23632e3df5bd339d6a6a Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sun, 14 Jul 2024 20:04:18 +0200 Subject: [PATCH] fixed error in 2df216c --- MLEM/Animations/SpriteAnimationGroup.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MLEM/Animations/SpriteAnimationGroup.cs b/MLEM/Animations/SpriteAnimationGroup.cs index b817077..5c2629d 100644 --- a/MLEM/Animations/SpriteAnimationGroup.cs +++ b/MLEM/Animations/SpriteAnimationGroup.cs @@ -42,7 +42,7 @@ namespace MLEM.Animations { /// /// Returns the amount of entries that this sprite animation group has. /// - public int Count; + public int Count => this.animations.Count; /// /// Returns the at the given index. ///