2021-03-26 16:53:45 +01:00
|
|
|
#import "raindeer.h"
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
|
|
|
|
@interface Troupeau : NSObject
|
|
|
|
{
|
|
|
|
NSMutableArray *troupeau;
|
2021-03-29 16:26:13 +02:00
|
|
|
NSArray *recetteTriDistance;
|
2021-03-26 16:53:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
- (id) init;
|
|
|
|
- (void) newDeer:(Raindeer*)rd;
|
|
|
|
- (int) courseUne:(int)time;
|
|
|
|
- (int) courseDeux:(int)time;
|
|
|
|
|
|
|
|
@end
|