mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-03 01:02:44 +03:00
10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
#include "event/mac/Event.h"
|
|
#include "event/Event.hpp"
|
|
#include <AppKit/AppKit.h>
|
|
|
|
void RunCocoaEventLoop() {
|
|
if (!Event::s_shouldLoopTerminate) {
|
|
[NSApp run];
|
|
}
|
|
}
|