mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-27 15:29:39 -06:00
- Add chatroom - Add string input - Update main() to support SDL2 - Change game files location to ~/Library/ApplicationSupport/HostileTakeover - Open URLs with OS’s default browser - Use Xcode default C/C++Objective-C compiler - Remove game/sdl/mac/SDL.framework - Use game/sdl/SDL2/osx/SDL2.framework
15 lines
232 B
Objective-C
15 lines
232 B
Objective-C
#ifndef __APPDELEGATE_H__
|
|
#define __APPDELEGATE_H__
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#include "base/thread.h"
|
|
|
|
@interface AppDelegate : NSObject <NSApplicationDelegate> {
|
|
bool m_fExiting;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif // __APPDELEGATE_H__
|