1 2 3 4 5 6 7 8 9 10 11 12
#ifndef PADDLE_H #define PADDLE_H GLuint paddle_texture; GLuint paddle_hit_texture; typedef struct { GLfloat w, h, x, y, z; GLfloat r, g, b, a; } Paddle_t; #endif