mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 14:07:53 +03:00
* FINALLY * Update animals.yml (cherry picked from commit f9ac956c0c1a79bc73984989c2b625c25b357ca1)
16 lines
321 B
C#
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;
|
|
}
|
|
}
|