summary refs log tree commit diff stats
path: root/Classes/ClassicGameMode.h
blob: bbce0296d77eadd767f1d964be7f21686ce6fa78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
//  GameLayer.h
//  Cart Collect
//
//  Created by iD Student Account on 7/18/11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import <Foundation/Foundation.h>
#import "cocos2d.h"
#import "GameMode.h"

@interface ClassicGameMode : GameMode {
	float addSpeed;
}

- (id)init;
- (void)randomlyAddObject:(ccTime)dt;

@end