AxiosEngine-old 

AxiosEngine-old Mercurial Source Tree


Root/axios/Engine/Structures/AxiosPoint.cs


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 fbbb8bf4e6ce created 12 years 7 months ago.
By Nathan Adams, * - Adding axioslog command to output AxiosLog

Archive Download this file

Page rendered in 0.82468s using 11 queries.