]> Dogcows Code - chaz/thecheat/blob - cheat_globals.m
The Cheat 1.1.1
[chaz/thecheat] / cheat_globals.m
1
2 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 // Project: The Cheat
4 //
5 // File: cheat_globals.m
6 // Created: Fri Sep 19 2003
7 //
8 // Copyright: 2003 Chaz McGarvey. All rights reserved.
9 // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
10
11 #include "cheat_globals.h"
12
13 char TCDefaultListenPath[104] = "/.thecheat_socket";
14
15 int TCGlobalDocumentCount = 1;
16 int TCGlobalAlternateBroadcastNameCount = 2;
17 char TCGlobalListening = NO;
18
19 char TCGlobalPlaySounds = YES;
20 char TCGlobalWindowsOnTop = NO;
21 char TCGlobalUpdateCheck = NO;
22 char TCGlobalAllowRemote = NO;
23 int TCGlobalListenPort = TCDefaultListenPort;
24 int TCGlobalHitsDisplayed = 1000;
25
26 NSString *TCPlaySoundsPref = @"TCPlaySoundsPref";
27 NSString *TCWindowsOnTopPref = @"TCWindowsOnTopPref";
28 NSString *TCUpdateCheckPref = @"TCUpdateCheckPref";
29 NSString *TCAllowRemotePref = @"TCAllowRemotePref";
30 NSString *TCListenPortPref = @"TCListenPortPref";
31 NSString *TCBroadcastNamePref = @"TCBroadcastNamePref";
32 NSString *TCHitsDisplayedPref = @"TCHitsDisplayedPref";
This page took 0.031424 seconds and 4 git commands to generate.