12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef params_h
- #define params_h
- #define BALL_SIZE 15
- #define THROW_ANG 20
- #define INITIAL_SPEED 500
- #define CORE_RADIUS 50
- #define RAQUETE_WIDTH 120
- #define RAQUETE_HEIGHT 10
- #define RAQUETE_ALTURA 90
- #define COLOR_back Color4B(39, 40, 34, 255)
- #define COLOR_pink Color4B(249,38,114, 255)
- #define COLOR_blue Color4B(102,217,239, 255)
- #define COLOR_green Color4B(166,226,46, 255)
- #define COLOR_orange Color4B(253,151,31, 255)
- #define COLOR_grey Color4B(120,120,120, 255)
- #define COLOR_red Color4F(0.988, 0.147, 0.030, 1)
- #define BALL_TAG 15
- #define BLOCK_TAG 10
- #define CORE_TAG 11
- #define BOTTOM_TAG 12
- #define INDESTRUCTIBLE_BLOCK_TAG 13
- #define RACKET_TAG 14
- #define THREE_BALLS_TAG 9
- #define SAVE_TAG 8
- #define DROP_LEVEL_SAVE 1
- #define DROP_TRIPLE_BALL 1
- #endif
|