minifb-zig-port/tests/ios/AppDelegate.h
2020-04-26 13:16:25 +02:00

21 lines
345 B
Objective-C

//
// 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;
}
@property (strong, nonatomic) UIWindow *window;
- (void) onUpdate;
@end