mirror of
https://github.com/zydeco/minivmac4ios.git
synced 2024-11-25 07:32:30 +00:00
17 lines
301 B
Objective-C
17 lines
301 B
Objective-C
//
|
|
// Emulator.h
|
|
// Mini vMac
|
|
//
|
|
// Created by Jesús A. Álvarez on 27/05/2016.
|
|
// Copyright © 2016 namedfork. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "EmulatorProtocol.h"
|
|
|
|
@interface Emulator : NSObject <Emulator>
|
|
|
|
- (void)updateScreen:(CGImageRef)screenImage;
|
|
|
|
@end
|