12 lines
347 B
C#
12 lines
347 B
C#
using Content.Server.StationEvents.Events;
|
|
|
|
namespace Content.Server.StationEvents.Components;
|
|
|
|
/// <summary>
|
|
/// This is used to keep track of hallucinated entities to remove effects when event ends
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(MassHallucinationsRule))]
|
|
public sealed partial class MassHallucinationsComponent : Component
|
|
{
|
|
}
|