#import <Foundation/Foundation.h>

typedef NS_ENUM(NSInteger, GestureHandlerDirection) {
    GestureHandlerDirectionRight = 1,
    GestureHandlerDirectionLeft = 2,
    GestureHandlerDirectionUp = 4,
    GestureHandlerDirectionDown = 8,
};
