mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
14 lines
340 B
Objective-C
14 lines
340 B
Objective-C
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class PGRectangle;
|
|
|
|
@interface PGCameraShotMetadata : NSObject
|
|
|
|
@property (nonatomic, assign) CGFloat deviceAngle;
|
|
@property (nonatomic, strong) PGRectangle *rectangle;
|
|
|
|
+ (CGFloat)relativeDeviceAngleFromAngle:(CGFloat)angle orientation:(UIInterfaceOrientation)orientation;
|
|
|
|
@end
|