Files
tbd-station-14/Content.Shared/Movement/Events/SpriteMoveEvent.cs
Ed 18fe8b9df0 Sprite Movement working with AI movement (#33494)
* FINALLY

* Update animals.yml
2024-12-18 17:15:34 +01: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;
}
}