2023-04-25 20:23:14 -04:00
|
|
|
|
namespace Content.Server.GameTicking.Rules.Components;
|
|
|
|
|
|
|
|
|
|
|
|
[RegisterComponent, Access(typeof(SecretRuleSystem))]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class SecretRuleComponent : Component
|
2023-04-25 20:23:14 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The gamerules that get added by secret.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[DataField("additionalGameRules")]
|
|
|
|
|
|
public HashSet<EntityUid> AdditionalGameRules = new();
|
|
|
|
|
|
}
|