mirror of
https://github.com/TermiT/Flycut.git
synced 2025-02-22 23:13:34 +08:00
16 lines
294 B
Mathematica
16 lines
294 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// FlycutHelper
|
||
|
//
|
||
|
// Created by Gennadii Potapov on 21/1/20.
|
||
|
//
|
||
|
|
||
|
#import <Cocoa/Cocoa.h>
|
||
|
|
||
|
int main(int argc, const char * argv[]) {
|
||
|
@autoreleasepool {
|
||
|
// Setup code that might create autoreleased objects goes here.
|
||
|
}
|
||
|
return NSApplicationMain(argc, argv);
|
||
|
}
|