cocoa backend postponed

This commit is contained in:
IoIxD 2026-04-26 20:31:09 -07:00
commit 1562c3b89e
3 changed files with 15 additions and 3 deletions

8
src/backend/nococoa.m Normal file
View file

@ -0,0 +1,8 @@
#include <Mw/Milsko.h>
void MwLLNoCocoaErrorMessage() {
NSAlert* alert = [[NSAlert alloc] init];
[alert setMessageText:@"Milsko applications currently requires XQuartz or cocoa-way. PRs are welcome for anyone who wants to finish the Cocoa backend (prefarably in Objective-C)"];
[alert addButtonWithTitle:@"Ok"];
[alert runModal];
}