mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
20 lines
302 B
Objective-C
20 lines
302 B
Objective-C
//
|
|
// File: VLSoundSched.h - Schedule sound playing in Cocoa app
|
|
//
|
|
// Author(s):
|
|
//
|
|
// (MN) Matthias Neeracher
|
|
//
|
|
// Copyright © 2006-2007 Matthias Neeracher
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface VLSoundSched : NSObject {
|
|
}
|
|
|
|
+ (void) setup;
|
|
+ (void) performSoundEvent:(id)soundEvent;
|
|
|
|
@end
|