Files
wwdpublic/Content.Server/Crayon/CrayonComponent.cs
RedFoxIV efca951b7c [феатуре] ms paint (#279)
* genuinely disappointed

* +

* cleanup

* Update Content.Client/_White/Overlays/CrayonPreviewOverlay.cs

* 123

* 456

* забыл

* ой блять

---------

Co-authored-by: Remuchi <72476615+Remuchi@users.noreply.github.com>
2025-03-05 16:03:22 +02:00

31 lines
871 B
C#

using Content.Server.UserInterface;
using Content.Shared.Crayon;
using Robust.Server.GameObjects;
using Robust.Shared.Audio;
/* // WWDP EDIT - DEFUNCT - Merged into one shared CrayonComponent.
namespace Content.Server.Crayon
{
[RegisterComponent]
public sealed partial class CrayonComponent : SharedCrayonComponent
{
[DataField("useSound")] public SoundSpecifier? UseSound;
[ViewVariables(VVAccess.ReadWrite)]
[DataField("selectableColor")]
public bool SelectableColor { get; set; }
[ViewVariables(VVAccess.ReadWrite)]
public int Charges { get; set; }
[ViewVariables(VVAccess.ReadWrite)]
[DataField("capacity")]
public int Capacity { get; set; } = 30;
[ViewVariables(VVAccess.ReadWrite)]
[DataField("deleteEmpty")]
public bool DeleteEmpty = true;
}
}
*/