14 lines
250 B
Objective-C
14 lines
250 B
Objective-C
//
|
|
// main.m
|
|
// macOSRTESample
|
|
//
|
|
// Created by Deadpikle on 3/28/18.
|
|
// Copyright © 2018 Pikle Productions. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
return NSApplicationMain(argc, argv);
|
|
}
|