thunderbrew/src/event/mac/Event.mm
2023-01-02 13:17:18 -06:00

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];
}
}