Skip to content

Commit 082a90a

Browse files
Merge PR #259 - add higher or lower game face
Adds a watch face that implements a game where the player must guess if the next card will be higher or lower than the last cards that have been revealed. Reviewed-by: Matheus Afonso Martins Moreira <[email protected]> Tested-on-hardware-by: Chris <[email protected]> GitHub-Pull-Request: #259
2 parents b113997 + 46208a3 commit 082a90a

File tree

4 files changed

+504
-0
lines changed

4 files changed

+504
-0
lines changed

movement/make/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ SRCS += \
133133
../watch_faces/complication/endless_runner_face.c \
134134
../watch_faces/complication/periodic_face.c \
135135
../watch_faces/complication/deadline_face.c
136+
../watch_faces/complication/higher_lower_game_face.c \
136137
# New watch faces go above this line.
137138

138139
# Leave this line at the bottom of the file; it has all the targets for making your project.

movement/movement_faces.h

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
#include "endless_runner_face.h"
109109
#include "periodic_face.h"
110110
#include "deadline_face.h"
111+
#include "higher_lower_game_face.h"
111112
// New includes go above this line.
112113

113114
#endif // MOVEMENT_FACES_H_

0 commit comments

Comments
 (0)