CrayonComponent.cs 429 B

1234567891011121314
  1. using Content.Shared.Crayon;
  2. using Robust.Shared.GameObjects;
  3. using Robust.Shared.ViewVariables;
  4. namespace Content.Client.Crayon
  5. {
  6. [RegisterComponent]
  7. public sealed partial class CrayonComponent : SharedCrayonComponent
  8. {
  9. [ViewVariables(VVAccess.ReadWrite)] public bool UIUpdateNeeded;
  10. [ViewVariables] public int Charges { get; set; }
  11. [ViewVariables] public int Capacity { get; set; }
  12. }
  13. }