Start trying own game

This commit is contained in:
2025-10-12 19:40:12 +02:00
parent 0a83eb3c10
commit 860d8febe6
8 changed files with 398 additions and 0 deletions

9
Capter1/ball.hpp Normal file
View File

@@ -0,0 +1,9 @@
class ball
{
private:
float x;
float y;
public:
ball();
~ball();
};