You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
506 B
C#
23 lines
506 B
C#
namespace CnControls
|
|
{
|
|
/// <summary>
|
|
/// Virtual axis class
|
|
/// </summary>
|
|
public class VirtualAxis
|
|
{
|
|
/// <summary>
|
|
/// Name of the axis for which this virtual axis has to be registered
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// Curret value of the axis
|
|
/// </summary>
|
|
public float Value { get; set; }
|
|
|
|
public VirtualAxis(string name)
|
|
{
|
|
Name = name;
|
|
}
|
|
}
|
|
} |