mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-14 08:12:28 +00:00
24 lines
496 B
Objective-C
24 lines
496 B
Objective-C
//
|
|
// MPAutotypeDelay.h
|
|
// MacPass
|
|
//
|
|
// Created by Michael Starke on 20/08/14.
|
|
// Copyright (c) 2014 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#import "MPAutotypeCommand.h"
|
|
|
|
@interface MPAutotypeDelay : MPAutotypeCommand
|
|
|
|
@property (readonly) NSUInteger delay;
|
|
/**
|
|
* Creates an DelayCommand that delays the execution for n milliseconds
|
|
*
|
|
* @param delay Delay in milliseconds
|
|
*
|
|
* @return <#return value description#>
|
|
*/
|
|
- (instancetype)initWithDelay:(NSUInteger)delay;
|
|
|
|
@end
|