@interface REAFrame : NSObject

@property float x;
@property float y;
@property float width;
@property float height;

- (instancetype)initWithX:(float)x y:(float)y width:(float)width height:(float)height;

@end
