aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionUpData.cs
blob: dbb805f9e1fe2708ba7e4df5d0660a833b03ffc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.Collections.Generic;
using System.Text;

namespace OpenSim.Framework
{
    [Serializable]
    public class RegionUpData
    {
        private uint m_X = 0;
        private uint m_Y = 0;
        private string m_ipaddr = "";
        private int m_port = 0;
        public RegionUpData(uint X, uint Y, string ipaddr, int port)
        {
            m_X = X;
            m_Y = Y;
            m_ipaddr = ipaddr;
            m_port = port;
        }

        public uint X
        {
            get { return m_X; }
        }
        public uint Y
        {
            get { return m_Y; }
        }
        public string IPADDR
        {
            get { return m_ipaddr; }
        }
        public int PORT
        {
            get { return m_port; } 
        }
            
    }
}