mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
23 lines
534 B
Objective-C
23 lines
534 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
|