namespace Content.Shared._DV.CosmicCult.Components;
///
/// a marker component used as an extra flag for an event to toggle the monument preview.
/// could probably have a better name but idrk.
///
[RegisterComponent]
public sealed partial class MonumentPlacementPreviewComponent : Component
{
///
/// the tier of the monument that the overlay added by the event with this comp should render
///
[DataField]
public int Tier = 1;
}