breakout/include/state.h
2025-12-04 19:26:04 -06:00

20 lines
225 B
C

#pragma once
#ifdef __cplusplus
extern "C" {
#endif
struct game_state {
float paddle_x;
float paddle_y;
float ball_x;
float ball_y;
float ball_dx;
float ball_dy;
};
#ifdef __cplusplus
}
#endif