Root/
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 |
---|