| 1234567891011121314151617 |
- using Content.Shared.DoAfter;
- using Robust.Shared.Serialization;
- namespace Content.Shared.Farming;
- [Serializable, NetSerializable]
- public sealed partial class CompostDoAfterEvent : DoAfterEvent
- {
- public NetEntity Used { get; }
- public CompostDoAfterEvent(NetEntity used)
- {
- Used = used;
- }
- public override DoAfterEvent Clone() => this;
- }
|