Cakewalk.Server.ServerEntity.ServerEntity C# (CSharp) Метод

ServerEntity() публичный Метод

public ServerEntity ( Socket socket, int worldID, World world, SocketAsyncPool asyncPool ) : System
socket System.Net.Sockets.Socket
worldID int
world World
asyncPool SocketAsyncPool
Результат System
        public ServerEntity(Socket socket, int worldID, World world, SocketAsyncPool asyncPool)
            : base(socket, worldID, asyncPool.GetArgs(), asyncPool.GetArgs())
        {
            m_asyncPool = asyncPool;
            Name = worldID.ToString();
            m_world = world;
        }