Files
wwdpublic/Content.Shared/Movement/Events/SpriteMoveEvent.cs
Ed f6f3f38d66 Sprite Movement working with AI movement (#33494)
* FINALLY

* Update animals.yml

(cherry picked from commit f9ac956c0c1a79bc73984989c2b625c25b357ca1)
2025-01-15 18:17:28 +03:00

16 lines
321 B
C#

namespace Content.Shared.Movement.Events;
/// <summary>
/// Raised on an entity whenever it should change movement sprite
/// </summary>
[ByRefEvent]
public readonly struct SpriteMoveEvent
{
public readonly bool IsMoving = false;
public SpriteMoveEvent(bool isMoving)
{
IsMoving = isMoving;
}
}