mirror of
https://github.com/thepigeongenerator/breakout_clone.git
synced 2025-12-18 06:45:45 +01:00
13 lines
240 B
C
13 lines
240 B
C
#pragma once
|
|
|
|
#define SCREEN_WIDTH 960
|
|
#define SCREEN_HEIGHT 640
|
|
|
|
#define BOUNCER_HEIGHT 5
|
|
#define BOUNCER_WIDTH_DEFAULT 60
|
|
|
|
#define BALL_SIZE_DEFAULT 10
|
|
#define BALL_SPEED 0.3F
|
|
|
|
#define PI 3.14159265358979323846F // pi was being fucky! :D
|