nes/NesKit/NesSystem.h

24 lines
341 B
Objective-C

//
// NesSystem.h
//
//
// Created by Selim Mustafaev on 27.09.2023.
//
#import <Foundation/Foundation.h>
#import <CoreGraphics/CoreGraphics.h>
NS_ASSUME_NONNULL_BEGIN
@interface NesSystem : NSObject
@property CGImageRef frame;
- (instancetype)init;
- (void)runRom:(NSURL*)url;
- (void)stepToNextFrame;
@end
NS_ASSUME_NONNULL_END