mirror of
https://github.com/openeggbert/mobile-eggbert-kni-web.git
synced 2025-03-25 23:57:53 +01:00
13 lines
280 B
C#
13 lines
280 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|