namespace Content.Server.Prayer
{
///
/// Allows an entity to be prayed on in the context menu
///
[RegisterComponent]
public sealed class PrayableComponent : Component
{
///
/// If bible users are only allowed to use this prayable entity
///
[DataField("bibleUserOnly")]
[ViewVariables(VVAccess.ReadWrite)]
public bool BibleUserOnly;
}
}