12 lines
160 B
C
12 lines
160 B
C
#pragma once
|
|
|
|
#define SCREEN_WIDTH 320
|
|
#define SCREEN_HEIGHT 240
|
|
#define BALL_SIZE 8
|
|
#define GRAVITY 0.2f
|
|
#define LOSS 0.75f
|
|
|
|
struct color_t
|
|
{
|
|
int r,g,b;
|
|
}; |