ish/app/TerminalView.h
2017-11-07 16:29:14 -08:00

17 lines
292 B
Objective-C

//
// TerminalView.h
// iSH
//
// Created by Theodore Dubois on 11/3/17.
//
#import <UIKit/UIKit.h>
#import "Terminal.h"
@interface TerminalView : UIView <UIKeyInput, WKScriptMessageHandler>
@property (nonatomic) Terminal *terminal;
@property (readonly) UIScrollView *scrollView;
@end