Files
OldThink/Content.Shared/_White/Wizard/Magic/MagicComponent.cs
2024-08-05 19:17:30 +03:00

18 lines
455 B
C#

using Content.Shared.Whitelist;
using Robust.Shared.GameStates;
namespace Content.Shared._White.Wizard.Magic;
[RegisterComponent, NetworkedComponent]
public sealed partial class MagicComponent : Component
{
/// <summary>
/// Does this spell require Wizard Robes & Hat?
/// </summary>
[DataField, ViewVariables(VVAccess.ReadWrite)]
public bool RequiresClothes;
[DataField]
public EntityWhitelist? ClothingWhitelist;
}