Skip to content

Commit

Permalink
Merge PR #419 - add endless runner watch face
Browse files Browse the repository at this point in the history
Adds an endless runner game face to the Sensor Watch.

The player character runs endlessly towards the right.
An endless number of obstacles speed towards him.
The player must jump over them or lose the game
when the player character runs smack into the obstacle.
Jumping requires fuel which is a limited resource
that must be managed by the player.

Features selectable difficulties and high score tracking.

Reviewed-by: Matheus Afonso Martins Moreira <[email protected]>
GitHub-Pull-Request: #419
  • Loading branch information
matheusmoreira committed Sep 3, 2024
2 parents 57d3ccb + 118c07a commit 56927b5
Show file tree
Hide file tree
Showing 4 changed files with 681 additions and 0 deletions.
1 change: 1 addition & 0 deletions movement/make/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ SRCS += \
../watch_faces/complication/tuning_tones_face.c \
../watch_faces/complication/kitchen_conversions_face.c \
../watch_faces/complication/wordle_face.c \
../watch_faces/complication/endless_runner_face.c \
# New watch faces go above this line.

# Leave this line at the bottom of the file; it has all the targets for making your project.
Expand Down
1 change: 1 addition & 0 deletions movement/movement_faces.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@
#include "tuning_tones_face.h"
#include "kitchen_conversions_face.h"
#include "wordle_face.h"
#include "endless_runner_face.h"
// New includes go above this line.

#endif // MOVEMENT_FACES_H_
Loading

0 comments on commit 56927b5

Please sign in to comment.