14 lines
240 B
Objective-C
14 lines
240 B
Objective-C
/*
|
|
* Delegates.h
|
|
* Box2D
|
|
*
|
|
* Box2D iPhone port by Simon Oliver - http://www.simonoliver.com - http://www.handcircus.com
|
|
*
|
|
*
|
|
*/
|
|
|
|
@protocol TestSelectDelegate <NSObject>
|
|
-(void) selectTest:(int) testIndex;
|
|
-(void) leaveTest;
|
|
|
|
@end |