mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 05:27:38 +03:00
14 lines
301 B
C#
14 lines
301 B
C#
using Content.Shared.DoAfter;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Repairable;
|
|
|
|
public abstract partial class SharedRepairableSystem : EntitySystem
|
|
{
|
|
[Serializable, NetSerializable]
|
|
protected sealed partial class RepairFinishedEvent : SimpleDoAfterEvent
|
|
{
|
|
}
|
|
}
|
|
|