ish/app/DelayedUITask.h
Theodore Dubois 5477fdc1e6 Improve UI
Do screen updates on the next frame, animate resizing in sync with keyboard, remove status bar, transparent background for the terminal
2017-11-08 17:25:04 -08:00

16 lines
239 B
Objective-C

//
// DelayedUITask.h
// iSH
//
// Created by Theodore Dubois on 11/8/17.
//
#import <Foundation/Foundation.h>
@interface DelayedUITask : NSObject
- (instancetype)initWithTarget:(id)target action:(SEL)action;
- (void)schedule;
@end