Added Pong
This commit is contained in:
parent
e53c2a82c4
commit
cee10d5f75
94 changed files with 12789 additions and 0 deletions
20
games/Pong/Classes/GGSDelegate.h
Normal file
20
games/Pong/Classes/GGSDelegate.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
//
|
||||
// GGSDelegate.h
|
||||
// Pong
|
||||
//
|
||||
// Created by Jeena on 27.02.11.
|
||||
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
||||
//
|
||||
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "GGSNetwork.h"
|
||||
|
||||
@class GGSNetwork;
|
||||
|
||||
@protocol GGSDelegate
|
||||
|
||||
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork ready:(BOOL)ready;
|
||||
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork gotCommand:(NSString *)command withArgs:(NSString *)args;
|
||||
- (void)GGSNetwork:(GGSNetwork *)ggsNetwork defined:(BOOL)defined;
|
||||
|
||||
@end
|
Reference in a new issue