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

14 lines
308 B
C#
Raw Permalink 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 class AccelerometerFactory
{
public static IAccelerometer Create() { return new AccelerometerDummyImpl(); }
2024-12-15 17:48:29 +01:00
}
}