2016-01-05 04:12:47 +00:00
|
|
|
//
|
|
|
|
// CSMachine.h
|
|
|
|
// Clock Signal
|
|
|
|
//
|
|
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import "CSCathodeRayView.h"
|
2016-01-15 01:33:22 +00:00
|
|
|
#import "AudioQueue.h"
|
2016-01-05 04:12:47 +00:00
|
|
|
|
|
|
|
@interface CSMachine : NSObject
|
|
|
|
|
|
|
|
- (void)runForNumberOfCycles:(int)numberOfCycles;
|
2016-02-13 03:30:06 +00:00
|
|
|
- (void)sync;
|
2016-01-05 04:12:47 +00:00
|
|
|
|
|
|
|
@property (nonatomic, weak) CSCathodeRayView *view;
|
2016-01-15 01:33:22 +00:00
|
|
|
@property (nonatomic, weak) AudioQueue *audioQueue;
|
2016-01-05 04:12:47 +00:00
|
|
|
|
|
|
|
@end
|