diff options
author | Starla Insigna <starla4444@gmail.com> | 2011-09-10 10:04:18 -0400 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2011-09-10 10:04:18 -0400 |
commit | ab9f7381455b334fa0df563e21775410be74ea45 (patch) | |
tree | 531ffb35abf20c8a75103a66c7de0a7136b11d24 /Classes/PointMultiplier.h | |
parent | b090d12d637e5cfbf0ac6955fa6c8d401de657b5 (diff) | |
download | cartcollect-ab9f7381455b334fa0df563e21775410be74ea45.tar.gz cartcollect-ab9f7381455b334fa0df563e21775410be74ea45.tar.bz2 cartcollect-ab9f7381455b334fa0df563e21775410be74ea45.zip |
Added point multipliers
There is support for point multipliers for any game mode, but only Jump currently utilizes it. Closes #222
Diffstat (limited to 'Classes/PointMultiplier.h')
-rw-r--r-- | Classes/PointMultiplier.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Classes/PointMultiplier.h b/Classes/PointMultiplier.h new file mode 100644 index 0000000..9d009cb --- /dev/null +++ b/Classes/PointMultiplier.h | |||
@@ -0,0 +1,15 @@ | |||
1 | // | ||
2 | // PointMultiplier.h | ||
3 | // Cartographic | ||
4 | // | ||
5 | // Created by Starla Insigna on 9/10/11. | ||
6 | // Copyright (c) 2011 Four Island. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import "FallingObject.h" | ||
10 | |||
11 | @interface PointMultiplier : FallingObject | ||
12 | |||
13 | - (id)init; | ||
14 | |||
15 | @end | ||