]> Dogcows Code - chaz/thecheat/blob - CheatClient.h
The Cheat 1.1.2
[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 #import <Chaz/Chaz.h>
13
14 #include "cheat_types.h"
15 #include "cheat_globals.h"
16 #include "cheat_net.h"
17
18
19 @interface CheatClient : NSObject
20 {
21 id rootProxy;
22 int sockfd;
23 }
24
25 + (NSConnection *)clientWithDelegate:(id)delegate server:(NSData *)server name:(NSString *)name;
26 + (void)clientThread:(NSArray *)array;
27
28 - (id)initWithRootProxy:(id)proxy;
29
30 - (void)connectToServer:(NSData *)data name:(NSString *)name;
31 - (void)run;
32
33 @end
This page took 0.029577 seconds and 4 git commands to generate.