adds 2048 clone game
styles table reads touch events allows moving tiles allows merging tiles improves tile movement allows merging tiles adds score display implements color edit comments adjust game logic disallows double merges
This commit is contained in:
parent
b4fb8897ac
commit
12617ed1bf
6 changed files with 311 additions and 2 deletions
|
|
@ -259,6 +259,7 @@ set(LVGL_SRC
|
|||
libs/lvgl/src/lv_objx/lv_cont.c
|
||||
libs/lvgl/src/lv_objx/lv_label.h
|
||||
libs/lvgl/src/lv_objx/lv_label.c
|
||||
libs/lvgl/src/lv_objx/lv_table.c
|
||||
libs/lvgl/src/lv_themes/lv_theme.c
|
||||
libs/lvgl/src/lv_themes/lv_theme.h
|
||||
libs/lvgl/src/lv_themes/lv_theme_night.h
|
||||
|
|
@ -347,6 +348,7 @@ list(APPEND SOURCE_FILES
|
|||
displayapp/screens/FirmwareValidation.cpp
|
||||
displayapp/screens/ApplicationList.cpp
|
||||
displayapp/screens/Notifications.cpp
|
||||
displayapp/screens/Twos.cpp
|
||||
main.cpp
|
||||
drivers/St7789.cpp
|
||||
drivers/SpiNorFlash.cpp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue