mirror of
https://github.com/openeggbert/mobile-eggbert-monogame-android.git
synced 2025-03-25 15:47:50 +01:00
14 lines
308 B
C#
14 lines
308 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 IAccelerometer Create() { return new AccelerometerDummyImpl(); }
|
|
}
|
|
}
|