mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 12:58:33 +01:00
fixed error in 2df216c
This commit is contained in:
parent
2df216c15d
commit
fa60b5e8b1
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ namespace MLEM.Animations {
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the amount of <see cref="SpriteAnimation"/> entries that this sprite animation group has.
|
/// Returns the amount of <see cref="SpriteAnimation"/> entries that this sprite animation group has.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public int Count;
|
public int Count => this.animations.Count;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Returns the <see cref="SpriteAnimation"/> at the given index.
|
/// Returns the <see cref="SpriteAnimation"/> at the given index.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in a new issue