Esempio n. 1
0
        public void Open()
        {
#if DEBUG
            Console.WriteLine("[+++] Connecting to the map server");
#endif
            _connection.Connect();
        }
Esempio n. 2
0
        public void Open(IPAddress ip, int port)
        {
#if DEBUG
            Console.WriteLine("[+++] Connecting to the map server");
#endif
            _connection.Connect(ip, port);
        }
Esempio n. 3
0
        public void Open(string host, int port)
        {
#if DEBUG
            Console.WriteLine("[+++] Connecting to the map server");
#endif
            _connection.Connect(host, port);
        }