Primer commit

This commit is contained in:
2024-08-21 07:35:52 +02:00
commit b1785cf5f1
11 changed files with 570 additions and 0 deletions

10
source/defines.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#define SCREEN_WIDTH 320
#define SCREEN_HEIGHT 240
#define NUM_BALLS 100
struct color_t
{
int r,g,b;
};