| 123456789101112131415161718192021 |
- using Content.Server.Atmos.EntitySystems;
- namespace Content.Server.Atmos.Components
- {
- [RegisterComponent]
- public sealed partial class AtmosPlaqueComponent : Component
- {
- [DataField("plaqueType")] public PlaqueType Type = PlaqueType.Unset;
- [ViewVariables(VVAccess.ReadWrite)]
- public PlaqueType TypeVV
- {
- get => Type;
- set
- {
- Type = value;
- IoCManager.Resolve<IEntityManager>().System<AtmosPlaqueSystem>().UpdateSign(Owner, this);
- }
- }
- }
- }
|