changed player to gen_server

This commit is contained in:
Jeena Paradies 2011-04-11 16:48:40 +02:00
parent da67b0a977
commit 135caff0e9
7 changed files with 1673 additions and 1445 deletions

View file

@ -32,7 +32,7 @@
@synthesize asyncSocket, delegate, gameToken, currentHeaders;
- (id)initWithDelegate:(id<GGSDelegate>)_delegate {
if (self = [super init]) {
if ((self = [super init])) {
delegate = _delegate;
asyncSocket = [[AsyncSocket alloc] initWithDelegate:self];