Application Galore

This commit is contained in:
VerstreuteSeele
2022-12-20 06:28:52 +01:00
parent 3ba146dab8
commit c02ce79f8c
210 changed files with 45743 additions and 114 deletions

View File

@@ -0,0 +1,62 @@
#include <furi.h>
uint8_t zombie_array[2][8][5] = {
{
{0, 0, 1, 1, 1},
{0, 0, 1, 1, 1},
{1, 1, 1, 1, 1},
{0, 0, 1, 1, 1},
{0, 0, 1, 1, 1},
{0, 0, 1, 1, 1},
{0, 0, 1, 0, 0},
{0, 0, 1, 0, 0},
},
{
{0, 0, 1, 1, 1},
{0, 0, 1, 1, 1},
{1, 1, 1, 1, 1},
{0, 0, 1, 1, 1},
{0, 0, 1, 1, 1},
{0, 0, 1, 1, 1},
{0, 0, 0, 0, 1},
{0, 0, 0, 0, 1},
},
};
uint8_t heart_array[5][5][5] = {
{
{0, 1, 0, 1, 0},
{1, 1, 1, 1, 1},
{1, 1, 1, 1, 1},
{0, 1, 1, 1, 0},
{0, 0, 1, 0, 0},
},
{
{0, 0, 0, 0, 0},
{1, 1, 1, 1, 1},
{1, 1, 1, 1, 1},
{0, 1, 1, 1, 0},
{0, 0, 1, 0, 0},
},
{
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0},
{1, 1, 1, 1, 1},
{0, 1, 1, 1, 0},
{0, 0, 1, 0, 0},
},
{
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0},
{0, 0, 0, 0, 0},
{0, 1, 1, 1, 0},
{0, 0, 1, 0, 0},
},
{
{1, 0, 0, 0, 1},
{0, 1, 0, 1, 0},
{0, 0, 1, 0, 0},
{0, 1, 0, 1, 0},
{1, 0, 0, 0, 1},
},
};