mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-15 20:31:36 +00:00
21 lines
416 B
Objective-C
21 lines
416 B
Objective-C
//
|
|
// CSMachine.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 04/01/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "CSOpenGLView.h"
|
|
#import "AudioQueue.h"
|
|
|
|
@interface CSMachine : NSObject
|
|
|
|
- (void)runForNumberOfCycles:(int)numberOfCycles;
|
|
|
|
@property (nonatomic, weak) CSOpenGLView *view;
|
|
@property (nonatomic, weak) AudioQueue *audioQueue;
|
|
|
|
@end
|