12 lines
178 B
Objective-C
12 lines
178 B
Objective-C
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@class CicadaFrameInfo;
|
|
|
|
@protocol CicadaRenderingDelegate <NSObject>
|
|
@optional
|
|
|
|
- (BOOL)onRenderingFrame:(CicadaFrameInfo*) frameInfo;
|
|
|
|
@end
|