2015-07-17 00:40:46 +00:00
|
|
|
//
|
|
|
|
// Atari2600.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 14/07/2015.
|
2018-05-13 19:19:52 +00:00
|
|
|
// Copyright 2015 Thomas Harte. All rights reserved.
|
2015-07-17 00:40:46 +00:00
|
|
|
//
|
|
|
|
|
2018-02-13 02:46:21 +00:00
|
|
|
@class CSAtari2600;
|
|
|
|
#import "CSMachine.h"
|
2015-07-24 00:45:07 +00:00
|
|
|
|
2018-02-13 02:46:21 +00:00
|
|
|
@interface CSAtari2600 : NSObject
|
2015-07-17 00:40:46 +00:00
|
|
|
|
2018-02-13 02:46:21 +00:00
|
|
|
- (instancetype)initWithAtari2600:(void *)atari2600 owner:(CSMachine *)machine;
|
2015-07-17 00:40:46 +00:00
|
|
|
|
2016-06-19 23:36:34 +00:00
|
|
|
@property (nonatomic, assign) BOOL colourButton;
|
|
|
|
@property (nonatomic, assign) BOOL leftPlayerDifficultyButton;
|
|
|
|
@property (nonatomic, assign) BOOL rightPlayerDifficultyButton;
|
|
|
|
- (void)pressResetButton;
|
|
|
|
- (void)pressSelectButton;
|
|
|
|
|
2015-07-17 00:40:46 +00:00
|
|
|
@end
|