mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-24 18:29:10 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
21 lines
496 B
C#
Executable file
21 lines
496 B
C#
Executable file
using Mina.Core.Buffer;
|
|
using FSO.Common.Serialization;
|
|
|
|
namespace FSO.Server.Protocol.Aries.Packets
|
|
{
|
|
public class RequestClientSession : IAriesPacket
|
|
{
|
|
public void Deserialize(IoBuffer input, ISerializationContext context)
|
|
{
|
|
}
|
|
|
|
public AriesPacketType GetPacketType()
|
|
{
|
|
return AriesPacketType.RequestClientSession;
|
|
}
|
|
|
|
public void Serialize(IoBuffer output, ISerializationContext context)
|
|
{
|
|
}
|
|
}
|
|
}
|