mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-24 00:58:01 +03:00
18 lines
424 B
C#
18 lines
424 B
C#
using Robust.Shared.Map;
|
|
|
|
namespace Content.Shared.Gravity
|
|
{
|
|
public sealed class GravityChangedMessage : EntityEventArgs
|
|
{
|
|
public GravityChangedMessage(GridId changedGridIndex, bool newGravityState)
|
|
{
|
|
HasGravity = newGravityState;
|
|
ChangedGridIndex = changedGridIndex;
|
|
}
|
|
|
|
public GridId ChangedGridIndex { get; }
|
|
|
|
public bool HasGravity { get; }
|
|
}
|
|
}
|