Files
demo5_sprites_bouncing/source/defines.h
2024-08-21 12:09:32 +02:00

11 lines
141 B
C

#pragma once
#define SCREEN_WIDTH 320
#define SCREEN_HEIGHT 240
#define BALL_SIZE 8
#define GRAVITY 0.2f
struct color_t
{
int r,g,b;
};