mirror of
https://github.com/danog/Telegram.git
synced 2024-12-02 09:27:55 +01:00
16 lines
408 B
Objective-C
16 lines
408 B
Objective-C
#import "TGViewController.h"
|
|
|
|
#import <CoreLocation/CoreLocation.h>
|
|
|
|
@class TGUser;
|
|
@class TGVenueAttachment;
|
|
|
|
@interface TGLocationViewController : TGViewController
|
|
|
|
@property (nonatomic, copy) void (^forwardPressed)(void);
|
|
@property (nonatomic, copy) void (^calloutPressed)(void);
|
|
|
|
- (instancetype)initWithCoordinate:(CLLocationCoordinate2D)coordinate venue:(TGVenueAttachment *)venue peer:(id)peer;
|
|
|
|
@end
|