]> Dogcows Code - chaz/thecheat/blob - RemoteCheater.h
update contact information and project URL
[chaz/thecheat] / RemoteCheater.h
1
2 /*
3 * The Cheat - The legendary universal game trainer for Mac OS X.
4 * http://www.brokenzipper.com/trac/wiki/TheCheat
5 *
6 * Copyright (c) 2003-2011, Charles McGarvey et al.
7 *
8 * Distributable under the terms and conditions of the 2-clause BSD
9 * license; see the file COPYING for the legal text of the license.
10 */
11
12 #import <Cocoa/Cocoa.h>
13 #import "ChazUpdate.h"
14
15 #import "Cheater.h"
16
17 #import "MySocket.h"
18
19
20 @interface RemoteCheater : Cheater
21 {
22 MySocket *_socket;
23
24 /* the current packet being read. */
25 TCPacketHeader _header;
26 NSData *_parameters;
27 }
28
29 - (BOOL)connectToHostWithData:(NSData *)data;
30 // disconnects automatically upon dealloc
31
32 @end
This page took 0.030453 seconds and 4 git commands to generate.