mirror of
https://github.com/openeggbert/mobile-eggbert-monogame-android.git
synced 2025-03-23 06:42:27 +01:00
24 lines
485 B
C#
24 lines
485 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace WindowsPhoneSpeedyBlupi
|
|||
|
{
|
|||
|
public class AccelerometerEventArgs : EventArgs
|
|||
|
{
|
|||
|
|
|||
|
public float X { get; }
|
|||
|
public float Y { get; }
|
|||
|
public float Z { get; }
|
|||
|
|
|||
|
public AccelerometerEventArgs(float x, float y, float z)
|
|||
|
{
|
|||
|
X = x;
|
|||
|
Y = y;
|
|||
|
Z = z;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|