9 lines
171 B
C#
9 lines
171 B
C#
|
|
using System.Collections.Generic;
|
|
using System.Net.Sockets;
|
|
|
|
public interface BlockContainerInit
|
|
{
|
|
List<SocketPoint> InitBlockContainer(List<SocketPoint> sockets);
|
|
}
|