Files
CPPGameBook/Capter1/ball.hpp
2025-10-12 19:40:12 +02:00

10 lines
84 B
C++

class ball
{
private:
float x;
float y;
public:
ball();
~ball();
};