6
2026-01-24 12:49:55 +03:00

16 lines
326 B
C#

using Content.Shared.Actions;
namespace Content.Shared.Magic.Events;
/// <summary>
/// Adds provided Charge to the held wand
/// </summary>
public sealed partial class ChargeSpellEvent : InstantActionEvent
{
[DataField(required: true)]
public int Charge;
[DataField]
public string WandTag = "WizardWand";
}