using Chernobyl.Mathematics.Mechanics; namespace Chernobyl.Input.Controls.Axis { /// /// A control that can be moved in a negative or positive direction in 1 /// dimension. /// public interface IAxisControl : IAxis, IControl { } /// /// A class for passing data on the invocation of the /// IAxis2D.OnMove event. /// public class Axis1DEventArgs : ControlEventArgs { /// /// Constructor. /// /// The axis that was moved. public Axis1DEventArgs(IAxisControl axis) : base(axis) {} } }