12 lines
79 B
C++
12 lines
79 B
C++
#include "ball.hpp"
|
|
|
|
ball::ball()
|
|
{
|
|
x = 0;
|
|
y = 0;
|
|
}
|
|
|
|
ball::~ball()
|
|
{
|
|
}
|