From: Matheus Afonso Martins Moreira Date: Tue, 3 Sep 2024 21:28:18 +0000 (-0300) Subject: Merge PR #419 - add endless runner watch face X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=c0a72acb7cb97fc0139783f1748568b937423a71;p=sensor-watch.git Merge PR #419 - add endless runner watch face 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 GitHub-Pull-Request: https://github.com/joeycastillo/Sensor-Watch/pull/419 --- c0a72acb7cb97fc0139783f1748568b937423a71 diff --cc movement/make/Makefile index f2b20eb,7114856..a23bfad --- a/movement/make/Makefile +++ b/movement/make/Makefile @@@ -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. diff --cc movement/movement_faces.h index f697e72,74856a6..26e25a4 --- a/movement/movement_faces.h +++ b/movement/movement_faces.h @@@ -104,7 -104,7 +104,8 @@@ #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_