00001
00002
00003
00004
00005
00006
00007
00008
00009 #import <Cocoa/Cocoa.h>
00010 #import "Data.h"
00011 #import "Comm.h"
00012 #import "LLNotificationCenter.h"
00013 #import "BaseClass.h"
00014
00015
00016 @interface ClientController : BaseClass {
00017 Universe *universe;
00018 Communication *communication;
00019 }
00020
00021 - (void)iDied:(Player *)me;
00022 - (id) initWithUniverse:(Universe*)newUniverse;
00023 - (void)singleReadFromServer;
00024 - (bool)startClientAt:(NSString *)server port:(int)port seperate:(bool)multiThread;
00025 - (bool)sendSlotSettingsToServer;
00026 - (void)stop;
00027
00028 @end