namespace Sandbox;
///
/// Represents the current state of a device's motion sensor(s).
///
public struct InputMotionData
{
///
/// The raw value from the input device's gyroscope.
///
public Angles Gyroscope;
///
/// The raw value from the input device's accelerometer.
///
public Vector3 Accelerometer;
}