mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-03 08:05:40 +00:00
17 lines
297 B
Objective-C
17 lines
297 B
Objective-C
//
|
|
// CSKeyboardMachine.h
|
|
// Clock Signal
|
|
//
|
|
// Created by Thomas Harte on 05/06/2016.
|
|
// Copyright © 2016 Thomas Harte. All rights reserved.
|
|
//
|
|
|
|
#import "KeyCodes.h"
|
|
|
|
@protocol CSKeyboardMachine <NSObject>
|
|
|
|
- (void)setKey:(uint16_t)key isPressed:(BOOL)isPressed;
|
|
- (void)clearAllKeys;
|
|
|
|
@end
|