djronin47 / yahscrewedx

Port of Yahscrewed to Mac OS X/Cocoa

This URL has Read+Write access

yahscrewedx / YChatPacket.h
100644 26 lines (20 sloc) 0.547 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
// YChatPacket.h
// YahscrewedX
//
// Created by Matthew Hayford on 10/17/08.
// Copyright 2008 Ronin47. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
 
@interface YChatPacket : NSObject {
NSString * chatPacketType;
NSString * chatPacketContents;
NSString * chatPacketLength;
}
 
+ (NSString *)chatPacketType;
- (void)setChatPacketType:(NSString *)newType;
+ (NSString *)chatPacketContents;
- (void)setChatPacketContents:(NSString *)newContents;
+ (NSString* )chatPacketLength;
- (void)setChatPacketLength:(NSString *)newLength;
 
@end