mirror of
https://github.com/darlinghq/darling-cocotron.git
synced 2024-11-24 04:29:44 +00:00
16 lines
370 B
Objective-C
16 lines
370 B
Objective-C
//
|
|
// NSPoofAnimation.h
|
|
// Poof
|
|
//
|
|
// Created by Airy ANDRE on 24/07/13.
|
|
// Copyright (c) 2013 plasq. All rights reserved.
|
|
//
|
|
|
|
#import <AppKit/AppKit.h>
|
|
|
|
@interface NSPoofAnimation : NSObject
|
|
|
|
+ (void)poofAtLocation:(NSPoint)location size:(NSSize)size animationDelegate:(id)animationDelegate didEndSelector:(SEL)didEndSelector contextInfo:(void *)contextInfo;
|
|
|
|
@end
|