summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/PlatformEffect.cs
blob: 6a1ca49475aafdafd1058d1327ba01b77a0d4527 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#if __MOBILE__
using UIKit;
namespace Xamarin.Forms.Platform.iOS
#else
using UIView = AppKit.NSView;

namespace Xamarin.Forms.Platform.MacOS
#endif
{
	public abstract class PlatformEffect : PlatformEffect<UIView, UIView>
	{
	}
}