2023-04-03 13:13:48 +12:00
|
|
|
|
using Content.Shared.DoAfter;
|
|
|
|
|
|
using Robust.Shared.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Content.Shared.Tools.Systems;
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Raised after welding do_after has finished. It doesn't guarantee success,
|
|
|
|
|
|
/// use <see cref="WeldableChangedEvent"/> to get updated status.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Serializable, NetSerializable]
|
2023-08-22 18:14:33 -07:00
|
|
|
|
public sealed partial class WeldFinishedEvent : SimpleDoAfterEvent
|
2023-04-03 13:13:48 +12:00
|
|
|
|
{
|
2023-08-22 18:14:33 -07:00
|
|
|
|
}
|