--- a/project_files/HedgewarsMobile/Classes/GameSetup.h Wed Dec 29 00:28:39 2010 +0100
+++ b/project_files/HedgewarsMobile/Classes/GameSetup.h Thu Dec 30 02:03:24 2010 +0100
@@ -25,11 +25,12 @@
@interface GameSetup : NSObject {
NSDictionary *systemSettings;
NSDictionary *gameConfig;
+ NSMutableDictionary *statsDictionary;
NSInteger ipcPort; // Port on which engine will listen
TCPsocket csd; // Client socket descriptor
TCPsocket esd; // External socket descriptor
-
+
NSString *savePath;
BOOL isNetGame;
BOOL menuStyle;
@@ -37,6 +38,7 @@
@property (nonatomic, retain) NSDictionary *systemSettings;
@property (nonatomic, retain) NSDictionary *gameConfig;
+@property (nonatomic, retain) NSMutableDictionary *statsDictionary;
@property (nonatomic, retain) NSString *savePath;
@property (assign) BOOL menuStyle;
@@ -48,6 +50,6 @@
-(void) provideAmmoData:(NSString *)ammostoreName forPlayingTeams:(NSInteger) numberOfTeams;
-(NSInteger) provideScheme:(NSString *)schemeName;
--(const char **)getSettings:(NSString *)recordFile;
+-(const char **)getGameSettings:(NSString *)recordFile;
@end