mobile-eggbert-monogame-and.../IAccelerometer.cs

16 lines
336 B
C#
Raw Normal View History

2024-12-15 17:48:29 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public interface IAccelerometer
2024-12-15 17:48:29 +01:00
{
void Start();
void Stop();
event EventHandler<AccelerometerEventArgs> CurrentValueChanged;
}
}