mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
17 lines
309 B
Objective-C
17 lines
309 B
Objective-C
//
|
|
// main.m
|
|
// Vocalese
|
|
//
|
|
// Created by Matthias Neeracher on 12/17/05.
|
|
// Copyright __MyCompanyName__ 2005 . All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "VLSoundSched.h"
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
[VLSoundSched setup];
|
|
return NSApplicationMain(argc, (const char **) argv);
|
|
}
|