mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-22 22:19:21 +00:00
17 lines
356 B
Objective-C
17 lines
356 B
Objective-C
//
|
|
// main.m
|
|
// AutotypeOverlay
|
|
//
|
|
// Created by Michael Starke on 09.03.22.
|
|
// Copyright © 2022 HicknHack Software GmbH. All rights reserved.
|
|
//
|
|
|
|
#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);
|
|
}
|