mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-25 20:35:16 -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
12 lines
261 B
Objective-C
Executable File
12 lines
261 B
Objective-C
Executable File
#ifndef __CHATCELL_H__
|
|
#define __CHATCELL_H__
|
|
|
|
#import <CoreFoundation/CoreFoundation.h>
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ChatCell : NSView
|
|
+ (id)cellWithRect:(NSRect)rect user:(NSString *)user chat:(NSString *)chat;
|
|
@end
|
|
|
|
#endif // __CHATCELL_H__
|