1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-22 15:28:56 +00:00
CLK/OSBindings/Mac/Clock Signal/CSAtari2600.h

20 lines
373 B
Objective-C

//
// Atari2600.h
// Clock Signal
//
// Created by Thomas Harte on 14/07/2015.
// Copyright © 2015 Thomas Harte. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "CSCathodeRayView.h"
@interface CSAtari2600 : NSObject
@property (nonatomic, weak) CSCathodeRayView *view;
- (void)runForNumberOfCycles:(int)cycles;
- (void)setROM:(NSData *)rom;
@end