Primer commit

la pilota no deixa de botar mai
This commit is contained in:
2024-08-21 10:42:37 +02:00
commit 36cb6154d7
11 changed files with 574 additions and 0 deletions

12
source/defines.h Normal file
View File

@@ -0,0 +1,12 @@
#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;
};