1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-25 17:53:47 +00:00
Aquaria/BBGE/Cocoa.mm

21 lines
443 B
Text
Raw Normal View History

#ifndef __APPLE__
#error This file is for Mac OS X only.
#endif
#ifndef __OBJC__
#error This is Objective-C code. Please compile it as such.
#endif
#include <Cocoa/Cocoa.h>
#include <string>
void cocoaMessageBox(const std::string &title, const std::string &msg)
{
2013-09-23 07:12:36 +00:00
@autoreleasepool {
2013-11-16 01:45:53 +00:00
NSString *nstitle = @(title.c_str());
NSString *nsmsg = @(msg.c_str());
NSRunAlertPanel(nstitle, nsmsg, nil, nil, nil);
2013-09-23 07:12:36 +00:00
}
}