summaryrefslogtreecommitdiff
path: root/platform/ios/test/MGLMockGestureRecognizers.m
blob: 89df6750a971672e0dbae00b6bad82163dce6289 (plain)
1
2
3
4
5
6
7
8
9
10
11

#import "MGLMockGestureRecognizers.h"

@implementation UIPinchGestureRecognizerMock
@synthesize velocity;
- (CGPoint)locationInView:(nullable UIView *)view { return self.locationInViewOverride; }
@end

@implementation UIRotationGestureRecognizerMock
- (CGPoint)locationInView:(nullable UIView*)view { return view.center; }
@end