mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-04-10 13:01:28 -06:00
18 lines
395 B
Objective-C
18 lines
395 B
Objective-C
#ifndef __CHATCELL_H__
|
|
#define __CHATCELL_H__
|
|
|
|
#import <CoreFoundation/CoreFoundation.h>
|
|
#import <Foundation/Foundation.h>
|
|
#import <UIKit/UIKit.h>
|
|
#import <UIKit/UIView.h>
|
|
#import <UIKit/UIWindow.h>
|
|
|
|
@interface ChatCell : UITableViewCell {
|
|
UILabel *nameLabel_;
|
|
UILabel *chatLabel_;
|
|
}
|
|
- (void)setup:(NSString *)chat user:(NSString *)user size:(CGSize)size;
|
|
@end
|
|
|
|
#endif // __CHATCELL_H__
|