Re-organize all projects (#4166)
This commit is contained in:
25
Content.Shared/StationEvents/MsgRequestStationEvents.cs
Normal file
25
Content.Shared/StationEvents/MsgRequestStationEvents.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
#nullable enable
|
||||
using Lidgren.Network;
|
||||
using Robust.Shared.Network;
|
||||
|
||||
namespace Content.Shared.StationEvents
|
||||
{
|
||||
public class MsgRequestStationEvents : NetMessage
|
||||
{
|
||||
#region REQUIRED
|
||||
|
||||
public const MsgGroups GROUP = MsgGroups.Command;
|
||||
public const string NAME = nameof(MsgRequestStationEvents);
|
||||
public MsgRequestStationEvents(INetChannel channel) : base(NAME, GROUP) { }
|
||||
|
||||
#endregion
|
||||
|
||||
public override void ReadFromBuffer(NetIncomingMessage buffer)
|
||||
{
|
||||
}
|
||||
|
||||
public override void WriteToBuffer(NetOutgoingMessage buffer)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user