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