2016-01-05 04:16:37 +00:00
|
|
|
//
|
|
|
|
// CSElectron.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
2016-06-11 15:50:37 +00:00
|
|
|
#import "CSMachine.h"
|
2016-06-05 12:53:05 +00:00
|
|
|
#import "CSKeyboardMachine.h"
|
2016-07-04 23:19:07 +00:00
|
|
|
#import "CSFastLoading.h"
|
2016-01-05 04:16:37 +00:00
|
|
|
|
2016-07-04 23:19:07 +00:00
|
|
|
@interface CSElectron : CSMachine <CSKeyboardMachine, CSFastLoading>
|
2016-01-05 04:16:37 +00:00
|
|
|
|
2016-03-13 21:39:53 +00:00
|
|
|
@property (nonatomic, assign) BOOL useFastLoadingHack;
|
2016-04-18 12:21:00 +00:00
|
|
|
@property (nonatomic, assign) BOOL useTelevisionOutput;
|
2016-03-13 21:39:53 +00:00
|
|
|
|
2016-01-05 04:16:37 +00:00
|
|
|
@end
|