]> Dogcows Code - chaz/thecheat/blob - CheatClient.h
The Cheat 1.0b4
[chaz/thecheat] / CheatClient.h
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: CheatClient.h
6 // Created: Mon Sep 22 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #import <Cocoa/Cocoa.h>
12
13 #include "cheat_types.h"
14 #include "cheat_globals.h"
15 #include "cheat_net.h"
16
17
18 @interface CheatClient : NSObject
19 {
20 id rootProxy;
21 int sockfd;
22 }
23
24 + (NSConnection *)clientWithDelegate:(id)delegate server:(NSData *)server name:(NSString *)name;
25 + (void)clientThread:(NSArray *)array;
26
27 - (id)initWithRootProxy:(id)proxy;
28
29 - (void)connectToServer:(NSData *)data name:(NSString *)name;
30 - (void)run;
31
32 @end
This page took 0.030417 seconds and 4 git commands to generate.