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>
|
2016-03-05 14:45:09 -05:00
|
|
|
#import "CSOpenGLView.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;
|
2016-02-12 22:30:06 -05:00
|
|
|
- (void)sync;
|
2016-01-04 23:12:47 -05:00
|
|
|
|
2016-03-05 14:45:09 -05:00
|
|
|
@property (nonatomic, weak) CSOpenGLView *view;
|
2016-01-14 20:33:22 -05:00
|
|
|
@property (nonatomic, weak) AudioQueue *audioQueue;
|
2016-01-04 23:12:47 -05:00
|
|
|
|
|
|
|
@end
|