mirror of
https://github.com/ish-app/ish.git
synced 2026-01-18 13:57:29 +00:00
Do screen updates on the next frame, animate resizing in sync with keyboard, remove status bar, transparent background for the terminal
16 lines
239 B
Objective-C
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
|