1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-08-16 00:29:01 +00:00
CLK/OSBindings/Mac/Clock Signal/Machine/Wrappers/CSAtari2600.h
Thomas Harte ddf1bf3cbf Reintroduces options selection for the Mac.
For everything except the Vic-20, anyway. That has a somewhat outdated notion of what an options panel should be, corresponding to the work yet to do on its analyser.
2018-02-12 21:46:21 -05:00

23 lines
537 B
Objective-C

//
// Atari2600.h
// Clock Signal
//
// Created by Thomas Harte on 14/07/2015.
// Copyright © 2015 Thomas Harte. All rights reserved.
//
@class CSAtari2600;
#import "CSMachine.h"
@interface CSAtari2600 : NSObject
- (instancetype)initWithAtari2600:(void *)atari2600 owner:(CSMachine *)machine;
@property (nonatomic, assign) BOOL colourButton;
@property (nonatomic, assign) BOOL leftPlayerDifficultyButton;
@property (nonatomic, assign) BOOL rightPlayerDifficultyButton;
- (void)pressResetButton;
- (void)pressSelectButton;
@end