13 lines
280 B
C#
Raw Normal View History

2025-01-14 15:38:01 +01:00
using System;
using Microsoft.Xna.Framework;
namespace Microsoft.Devices.Sensors
{
public struct AccelerometerReading : ISensorReading
{
public Vector3 Acceleration { get; internal set; }
public DateTimeOffset Timestamp { get; internal set; }
}
}