Added stub for AutotypeOverlay

This commit is contained in:
Michael Starke
2022-03-10 12:39:49 +01:00
parent 401d0d1b2f
commit 7113b9f355
11 changed files with 1156 additions and 0 deletions

16
AutotypeOverlay/main.m Normal file
View File

@@ -0,0 +1,16 @@
//
// 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);
}