2020-04-25 21:17:54 +00:00
|
|
|
//
|
|
|
|
// AppDelegate.h
|
|
|
|
// MiniFB
|
|
|
|
//
|
|
|
|
// Created by Carlos Aragones on 22/04/2020.
|
|
|
|
// Copyright © 2020 Carlos Aragones. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface AppDelegate : UIResponder <UIApplicationDelegate>
|
|
|
|
{
|
|
|
|
CADisplayLink *mDisplayLink;
|
|
|
|
}
|
2020-04-26 15:42:23 +00:00
|
|
|
|
2020-04-25 21:17:54 +00:00
|
|
|
@property (strong, nonatomic) UIWindow *window;
|
|
|
|
|
2020-04-26 15:42:23 +00:00
|
|
|
- (void) OnUpdateFrame;
|
2020-04-25 21:17:54 +00:00
|
|
|
|
|
|
|
@end
|
|
|
|
|