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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lalit2.Dangi@live.uwe.ac.uk
pop-assessment2
Commits
befc2259
Commit
befc2259
authored
1 month ago
by
Lalit2.Dangi@live.uwe.ac.uk
Browse files
Options
Downloads
Patches
Plain Diff
Add new file
parent
687aa29f
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game.h
+23
-0
23 additions, 0 deletions
game.h
with
23 additions
and
0 deletions
game.h
0 → 100644
+
23
−
0
View file @
befc2259
#ifndef GAME_H
#define GAME_H
#include
"raylib.h"
typedef
struct
Paddle
{
Rectangle
rect
;
int
speed
;
}
Paddle
;
typedef
struct
Ball
{
Vector2
position
;
Vector2
speed
;
int
radius
;
}
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
);
void
DrawGame
(
Paddle
*
paddle
,
Ball
*
ball
);
void
FreeGame
(
Paddle
*
paddle
,
Ball
*
ball
);
#endif
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