974deca5e1
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11846 178a84e3-b1eb-0310-8ba1-8eac791a3b58
25 lines
566 B
Objective-C
25 lines
566 B
Objective-C
// Copyright (C) 2005-2006 Etienne Petitjean
|
|
// Copyright (C) 2007-2012 Christian Stehno
|
|
// This file is part of the "Irrlicht Engine".
|
|
// For conditions of distribution and use, see copyright notice in Irrlicht.h
|
|
|
|
#include "IrrCompileConfig.h"
|
|
|
|
#ifdef _IRR_COMPILE_WITH_OSX_DEVICE_
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "CIrrDeviceMacOSX.h"
|
|
|
|
@interface AppDelegate : NSObject
|
|
{
|
|
BOOL _quit;
|
|
irr::CIrrDeviceMacOSX *_device;
|
|
}
|
|
|
|
- (id)initWithDevice:(irr::CIrrDeviceMacOSX *)device;
|
|
- (BOOL)isQuit;
|
|
|
|
@end
|
|
|
|
#endif // _IRR_COMPILE_WITH_OSX_DEVICE_
|