mirror of
https://github.com/ksherlock/ProFUSE-Image-Opener.git
synced 2024-11-15 10:04:42 +00:00
15 lines
260 B
Mathematica
15 lines
260 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// Image Opener
|
||
|
//
|
||
|
// Created by Kelvin Sherlock on 3/1/2011.
|
||
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **)argv);
|
||
|
}
|