hostile-takeover/game/sdl/ios/chatcell.h
2016-08-24 16:42:47 -04:00

19 lines
474 B
Objective-C
Executable File

#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_;
}
- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier;
- (void)setup:(NSString *)chat user:(NSString *)user size:(CGSize)size;
@end
#endif // __CHATCELL_H__