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