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

12 lines
79 B
C++

#include "ball.hpp"
ball::ball()
{
x = 0;
y = 0;
}
ball::~ball()
{
}