mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 22:18:52 +03:00
* Velcroboy changes * Fix compilation errors * Fix borked path * Fix * Moved to shared, fixed some problems with code * Cleanup * Fix paths * Fix * Move files around * Moved DiggingSystem to Server
30 lines
657 B
C#
30 lines
657 B
C#
using Content.Shared.DoAfter;
|
|
using Robust.Shared.Map;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared.Nyanotrasen.Digging;
|
|
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed partial class EarthDiggingDoAfterEvent : DoAfterEvent
|
|
{
|
|
public NetCoordinates Coordinates { get; set; }
|
|
|
|
private EarthDiggingDoAfterEvent(){}
|
|
|
|
public EarthDiggingDoAfterEvent(NetCoordinates coordinates)
|
|
{
|
|
Coordinates = coordinates;
|
|
}
|
|
public override DoAfterEvent Clone()
|
|
{
|
|
return this;
|
|
}
|
|
}
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class EarthDiggingCancelledEvent : EntityEventArgs
|
|
{
|
|
public NetEntity Shovel;
|
|
}
|