2016-10-11 22:20:13 -04: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 18:56:55 -04:00
|
|
|
#import "CSKeyboardMachine.h"
|
2016-11-03 07:59:30 -04:00
|
|
|
#import "CSFastLoading.h"
|
2016-10-11 22:20:13 -04:00
|
|
|
|
2016-11-03 07:59:30 -04:00
|
|
|
@interface CSOric : CSMachine <CSKeyboardMachine, CSFastLoading>
|
2016-10-11 22:20:13 -04:00
|
|
|
|
2016-11-03 07:59:30 -04:00
|
|
|
@property (nonatomic, assign) BOOL useFastLoadingHack;
|
|
|
|
@property (nonatomic, assign) BOOL useCompositeOutput;
|
2016-10-19 22:56:14 -04:00
|
|
|
|
2016-10-11 22:20:13 -04:00
|
|
|
@end
|