#ifndef PADDLE_H #define PADDLE_H static const int PADDLE_H_POS_START = 40; static const int PADDLE_V_POS_START = 12; static const int PADDLE_H_SIZE_NORMAL = 8; static const int PADDLE_V_SIZE_NORMAL = 4; static const int PADDLE_H_SPEED_NORMAL = 2; static const int PADDLE_V_SPEED_NORMAL = 1; struct paddle { int pos; int size; int speed; int dir; }; #endif