mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-04-09 23:06:47 +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];
|
|
}
|
|
}
|