mirror of https://github.com/AxioDL/boo.git
minor cleanup work
This commit is contained in:
parent
de7f062944
commit
c357c9d91f
|
@ -5,6 +5,7 @@
|
|||
@interface AppDelegate : NSObject <NSApplicationDelegate>
|
||||
{
|
||||
boo::IApplicationCallback* callback;
|
||||
@public
|
||||
NSPanel* aboutPanel;
|
||||
}
|
||||
- (id)initWithCallback:(boo::IApplicationCallback*)cb;
|
||||
|
@ -134,6 +135,7 @@ public:
|
|||
[aboutText setAlignment:NSCenterTextAlignment];
|
||||
[aboutText setString:@"\nRWK Authors\n\nJackoalan\nAntidote\n"];
|
||||
[aboutPanel setContentView:aboutText];
|
||||
appDelegate->aboutPanel = aboutPanel;
|
||||
|
||||
[app run];
|
||||
}
|
||||
|
|
|
@ -1,15 +1,5 @@
|
|||
|
||||
#if __APPLE__
|
||||
#include <CoreFoundation/CoreFoundation.h>
|
||||
#else
|
||||
#endif
|
||||
#include <stdio.h>
|
||||
#include <boo.hpp>
|
||||
#if _WIN32
|
||||
|
||||
#else
|
||||
#include <unistd.h>
|
||||
#endif
|
||||
|
||||
namespace boo
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue