10 lines
84 B
C++
10 lines
84 B
C++
class ball
|
|
{
|
|
private:
|
|
float x;
|
|
float y;
|
|
public:
|
|
ball();
|
|
~ball();
|
|
};
|