18 lines
355 B
C
18 lines
355 B
C
|
//
|
||
|
// AIRMapSnapshot.h
|
||
|
// AirMaps
|
||
|
//
|
||
|
// Created by Hein Rutjes on 26/09/16.
|
||
|
// Copyright © 2016 Christopher. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef AIRMapSnapshot_h
|
||
|
#define AIRMapSnapshot_h
|
||
|
|
||
|
@protocol AIRMapSnapshot <NSObject>
|
||
|
@optional
|
||
|
- (void) drawToSnapshot:(MKMapSnapshot *) snapshot context:(CGContextRef) context;
|
||
|
@end
|
||
|
|
||
|
#endif /* AIRMapSnapshot_h */
|