Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pop-assessment2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lalit2.Dangi@live.uwe.ac.uk
pop-assessment2
Commits
9c5516d9
Commit
9c5516d9
authored
2 months ago
by
Lalit2.Dangi@live.uwe.ac.uk
Browse files
Options
Downloads
Patches
Plain Diff
Edit game.h
parent
4799f36d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
game.h
+4
-2
4 additions, 2 deletions
game.h
with
4 additions
and
2 deletions
game.h
+
4
−
2
View file @
9c5516d9
...
...
@@ -2,6 +2,7 @@
#define GAME_H
#include
"raylib.h"
#include
<stdbool.h>
typedef
struct
Paddle
{
Rectangle
rect
;
...
...
@@ -12,10 +13,11 @@ typedef struct Ball {
Vector2
position
;
Vector2
speed
;
int
radius
;
int
score
;
// ✅ Add this line
int
score
;
int
lives
;
bool
isGameOver
;
}
Ball
;
Paddle
*
CreatePaddle
(
float
x
,
float
y
,
float
width
,
float
height
,
int
speed
);
Ball
*
CreateBall
(
float
x
,
float
y
,
int
radius
,
float
speedX
,
float
speedY
);
void
UpdateBall
(
Ball
*
ball
,
Paddle
*
paddle
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment