/* * structs.h * * Definition of all used structures * * Created on: 03.12.2020 * Author: willy */ #ifndef STRUCTS_H_ #define STRUCTS_H_ struct Ball{ float x; float y; float vel_x; float vel_y; }; struct Paddle{ float y; int length; }; #endif /* STRUCTS_H_ */