mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
16 lines
374 B
Mathematica
16 lines
374 B
Mathematica
|
/**
|
||
|
* main.m
|
||
|
* ScintillaTest
|
||
|
*
|
||
|
* Created by Mike Lischke on 02.04.09.
|
||
|
* Copyright Sun Microsystems, Inc 2009. All rights reserved.
|
||
|
* This file is dual licensed under LGPL v2.1 and the Scintilla license (http://www.scintilla.org/License.txt).
|
||
|
*/
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, char *argv[])
|
||
|
{
|
||
|
return NSApplicationMain(argc, (const char **) argv);
|
||
|
}
|