17 lines
476 B
C#
17 lines
476 B
C#
using Robust.Shared.GameStates;
|
|
|
|
namespace Content.Shared._DV.CosmicCult.Components;
|
|
|
|
/// <summary>
|
|
/// Component for handling The Monument's collision.
|
|
/// </summary>
|
|
[RegisterComponent, NetworkedComponent]
|
|
[AutoGenerateComponentState]
|
|
public sealed partial class MonumentCollisionComponent : Component
|
|
{
|
|
/// <summary>
|
|
/// Determines whether The Monument is tangible to non-cultists.
|
|
/// </summary>
|
|
[DataField, AutoNetworkedField] public bool HasCollision;
|
|
}
|