mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
* genuinely disappointed * + * cleanup * Update Content.Client/_White/Overlays/CrayonPreviewOverlay.cs * 123 * 456 * забыл * ой блять --------- Co-authored-by: Remuchi <72476615+Remuchi@users.noreply.github.com>
31 lines
871 B
C#
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;
|
|
}
|
|
}
|
|
*/
|