summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT.Tablet/WindowsPlatformServices.cs
blob: d729713d1a6e0c543828f6c159fa4d54bf2c6780 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using Windows.UI.Core;

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	internal class WindowsPlatformServices : WindowsBasePlatformServices
	{
		public WindowsPlatformServices(CoreDispatcher dispatcher) : base(dispatcher)
		{
		}
	}
}