2022-08-26 01:34:05 +12:00
|
|
|
using Robust.Shared.GameStates;
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Movement.Components;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Exists just to listen to a single event. What a life.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[NetworkedComponent, RegisterComponent] // must be networked to properly predict adding & removal
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class SlowedByContactComponent : Component
|
2022-08-26 01:34:05 +12:00
|
|
|
{
|
|
|
|
|
}
|