2021-06-09 22:19:39 +02:00
|
|
|
using Content.Shared.Crayon;
|
2020-10-13 13:40:05 +02:00
|
|
|
using Robust.Shared.GameObjects;
|
|
|
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
|
|
2021-06-09 22:19:39 +02:00
|
|
|
namespace Content.Client.Crayon
|
2020-10-13 13:40:05 +02:00
|
|
|
{
|
|
|
|
|
[RegisterComponent]
|
2023-08-22 18:14:33 -07:00
|
|
|
public sealed partial class CrayonComponent : SharedCrayonComponent
|
2020-10-13 13:40:05 +02:00
|
|
|
{
|
2022-02-06 23:32:32 +11:00
|
|
|
[ViewVariables(VVAccess.ReadWrite)] public bool UIUpdateNeeded;
|
|
|
|
|
[ViewVariables] public int Charges { get; set; }
|
|
|
|
|
[ViewVariables] public int Capacity { get; set; }
|
2020-10-13 13:40:05 +02:00
|
|
|
}
|
|
|
|
|
}
|