Files
tbd-station-14/Content.Shared/GhostKick/MsgGhostKick.cs
Pieter-Jan Briers ebfe5e888f Kick mines (real) (#8056)
Co-authored-by: metalgearsloth <comedian_vs_clown@hotmail.com>
2022-05-18 14:07:35 +10:00

18 lines
360 B
C#

using Lidgren.Network;
using Robust.Shared.Network;
namespace Content.Shared.GhostKick;
public sealed class MsgGhostKick : NetMessage
{
public override MsgGroups MsgGroup => MsgGroups.Core;
public override void ReadFromBuffer(NetIncomingMessage buffer)
{
}
public override void WriteToBuffer(NetOutgoingMessage buffer)
{
}
}