Added 120Fps Support

This commit is contained in:
2023-01-11 14:15:08 +01:00
parent a092c05866
commit 5becf33df0
2 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ namespace Caisses
{
public class GraphicalClient : Client
{
const int MAX_CLIENT_SPEED = 5;
const int MIN_CLIENT_SPEED = -5;
const float MAX_CLIENT_SPEED = 2.5f; //5 At 60FPS
const float MIN_CLIENT_SPEED = -2.5f; //-5 At 60FPS
private PointF _speed;
private PointF _position;