Re-organize all projects (#4166)
This commit is contained in:
18
Content.Shared/Gravity/GravityChangedMessage.cs
Normal file
18
Content.Shared/Gravity/GravityChangedMessage.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
#nullable enable
|
||||
using Robust.Shared.GameObjects;
|
||||
using Robust.Shared.Map;
|
||||
|
||||
namespace Content.Shared.Gravity
|
||||
{
|
||||
public class GravityChangedMessage : EntityEventArgs
|
||||
{
|
||||
public GravityChangedMessage(IMapGrid grid)
|
||||
{
|
||||
Grid = grid;
|
||||
}
|
||||
|
||||
public IMapGrid Grid { get; }
|
||||
|
||||
public bool HasGravity => Grid.HasGravity;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user