AxiosEngine-old 

AxiosEngine-old Mercurial Source Tree


Root/axios/Engine/Structures/AxiosPoint.cs

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

namespace Axios.Engine.Structures
{
    public class AxiosPoint
    {
        private float _x;
        private float _y;
 
        public float X
        {
            get { return _x; }
            set { _x = value; }
        }
 
        public float Y
        {
            get { return _y; }
            set { _y = value; }
        }
 
        public AxiosPoint(float X, float Y)
        {
            _x = X;
            _y = Y;
        }
    }
}
Source at commit 2794825e9cdc created 12 years 8 months ago.
By Nathan Adams, Removing uneeded Game Screen check

Archive Download this file

Page rendered in 0.81194s using 11 queries.