1
0
mirror of https://github.com/openeggbert/mobile-eggbert-kni-web.git synced 2025-03-26 16:09:26 +01:00
mobile-eggbert-kni-web/AccelerometerFactory.cs

14 lines
294 B
C#
Raw Normal View History

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(); }
}
}