Trying to make a server

This commit is contained in:
2022-10-23 20:58:01 +02:00
parent 9d04246d75
commit 7a60703eb8
9 changed files with 125 additions and 16 deletions
+2 -2
View File
@@ -50,14 +50,14 @@ namespace client
{
if (ball.Position.X < Position.X + Width && ball.CanMove)
{
ball.StopMoving();
//ball.StopMoving();
}
}
else
{
if (ball.Position.X > Position.X && ball.CanMove)
{
ball.StopMoving();
//ball.StopMoving();
}
}
}