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

ServerRemoteInterface() 공개 메소드

Initializes a new instance of the ServerRemoteInterface class.
public ServerRemoteInterface ( BigEndianStream stream, int version ) : System.Diagnostics.CodeAnalysis
stream Pdelvo.Minecraft.Network.BigEndianStream The stream.
version int The version.
리턴 System.Diagnostics.CodeAnalysis
        public ServerRemoteInterface(BigEndianStream stream, int version)
            : base(new PacketEndPoint(stream, version))
        {
            //_thread.Name = "Server Thread";
            stream.Context = PacketContext.Server;

            PrepareEndPoint ();
        }