server-master/srcs/GameChannel/Network/IClientSessionFactory.cs
2026-02-10 18:21:30 +01:00

13 lines
No EOL
232 B
C#

// WingsEmu
//
// Developed by NosWings Team
using WingsEmu.Game.Networking;
namespace GameChannel.Network
{
public interface IClientSessionFactory
{
IClientSession CreateSession(GameTcpServer session);
}
}