15 lines
297 B
Mathematica
15 lines
297 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// SoundNote
|
||
|
//
|
||
|
// Created by Mr. Gecko on 7/4/10.
|
||
|
// Copyright (c) 2011 Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
}
|