Pdelvo.Minecraft.Protocol.ServerRemoteInterface.Create C# (CSharp) 메소드

Create() 공개 정적인 메소드

public static Create ( Stream baseStream, int protocolVersion ) : ServerRemoteInterface
baseStream System.IO.Stream
protocolVersion int
리턴 ServerRemoteInterface
        public static ServerRemoteInterface Create(Stream baseStream, int protocolVersion)
        {
            return new ServerRemoteInterface(new BigEndianStream(
                                                 new FullyReadStream(baseStream)), protocolVersion);
        }
    }