]> git.earman.xyz Git - sensor-watch.git/commitdiff
Merge PR #419 - add endless runner watch face
authorMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Tue, 3 Sep 2024 21:28:18 +0000 (18:28 -0300)
committerMatheus Afonso Martins Moreira <matheus@matheusmoreira.com>
Tue, 3 Sep 2024 21:50:12 +0000 (18:50 -0300)
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 <matheus@matheusmoreira.com>
GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/419

1  2 
movement/make/Makefile
movement/movement_faces.h

index f2b20ebad4b4ba0dd10756ea13530b37eb3ad052,7114856a78d613a4b31db5101c5d1c0eecc6fd66..a23bfad755f95ac743911d8b3cc00c1ee0bf2e8a
@@@ -129,7 -129,7 +129,8 @@@ SRCS += 
    ../watch_faces/clock/minute_repeater_decimal_face.c \
    ../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.
index f697e7240c30c6bc25f20f406abf467315d381e8,74856a6f27ead7b10dafc683355016c824184ba3..26e25a491e852ad87f0f93fc0fb4c96046490a36
  #include "minute_repeater_decimal_face.h"
  #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_