9 lines
249 B
Objective-C
9 lines
249 B
Objective-C
#import <Foundation/Foundation.h>
|
|
|
|
typedef NS_ENUM(NSInteger, RNGestureHandlerDirection) {
|
|
RNGestureHandlerDirectionRight = 1,
|
|
RNGestureHandlerDirectionLeft = 2,
|
|
RNGestureHandlerDirectionUp = 4,
|
|
RNGestureHandlerDirectionDown = 8,
|
|
};
|