mobile-eggbert-monogame-and.../AccelerometerFactory.cs
2024-12-15 17:48:29 +01:00

14 lines
307 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WindowsPhoneSpeedyBlupi
{
public class AccelerometerFactory
{
public static Accelerometer Create() { return new AccelerometerDummyImpl(); }
}
}