123456789101112131415161718192021222324252627 |
- /*
- * 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_ */
|