2016-10-12 02:20:13 +00:00
|
|
|
//
|
|
|
|
// CSOric.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 11/10/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "CSMachine.h"
|
2016-10-13 22:56:55 +00:00
|
|
|
#import "CSKeyboardMachine.h"
|
2016-11-03 11:59:30 +00:00
|
|
|
#import "CSFastLoading.h"
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2016-11-03 11:59:30 +00:00
|
|
|
@interface CSOric : CSMachine <CSKeyboardMachine, CSFastLoading>
|
2016-10-12 02:20:13 +00:00
|
|
|
|
2017-08-27 20:36:21 +00:00
|
|
|
- (instancetype)init;
|
|
|
|
|
2016-11-03 11:59:30 +00:00
|
|
|
@property (nonatomic, assign) BOOL useFastLoadingHack;
|
|
|
|
@property (nonatomic, assign) BOOL useCompositeOutput;
|
2016-10-20 02:56:14 +00:00
|
|
|
|
2016-10-12 02:20:13 +00:00
|
|
|
@end
|