2016-01-04 23:12:47 -05: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-14 20:33:22 -05:00
|
|
|
#import "AudioQueue.h"
|
2016-01-04 23:12:47 -05:00
|
|
|
|
|
|
|
@interface CSMachine : NSObject
|
|
|
|
|
|
|
|
- (void)runForNumberOfCycles:(int)numberOfCycles;
|
|
|
|
|
|
|
|
@property (nonatomic, weak) CSCathodeRayView *view;
|
2016-01-14 20:33:22 -05:00
|
|
|
@property (nonatomic, weak) AudioQueue *audioQueue;
|
2016-01-04 23:12:47 -05:00
|
|
|
|
|
|
|
@end
|