about summary refs log tree commit diff stats
path: root/src/pong.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pong.h')
-rw-r--r--src/pong.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pong.h b/src/pong.h
index 99e58e3..f286406 100644
--- a/src/pong.h
+++ b/src/pong.h
@@ -28,6 +28,7 @@ struct Players {
 	int Score;
 	int Direction;
 	Rectangle BallDetector;
+	int NextTick;
 };
 
 struct Balls {
@@ -37,6 +38,7 @@ struct Balls {
 	float Speed;
 	int Direction;
 	Rectangle HitBox;
+	int NextTick;
 };
 
 struct Settings {