mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-22 01:12:24 +00:00
23 lines
403 B
C#
23 lines
403 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace FSO.Server.Common
|
|||
|
{
|
|||
|
public interface IServerDebugger
|
|||
|
{
|
|||
|
IPacketLogger GetPacketLogger();
|
|||
|
void AddSocketServer(ISocketServer server);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public interface ISocketServer
|
|||
|
{
|
|||
|
List<ISocketSession> GetSocketSessions();
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
public interface ISocketSession
|
|||
|
{
|
|||
|
void Write(params object[] data);
|
|||
|
}
|
|||
|
}
|