unleashed-firmware/applications/flappy_bird/bird.h

54 lines
1.5 KiB
C
Raw Normal View History

2022-05-17 12:54:09 +00:00
#include <furi.h>
uint8_t bird_array[3][15][11] = {
{
{0,0,0,0,0,0,1,1,0,0,0},
{0,0,0,0,0,1,0,0,1,0,0},
{0,0,0,0,0,1,0,0,0,1,0},
{0,0,1,1,1,1,0,0,0,1,0},
{0,1,0,0,0,1,0,0,0,1,0},
{0,1,0,0,0,0,1,0,1,0,1},
{1,0,0,0,0,0,0,1,0,0,1},
{1,0,1,1,1,0,0,1,0,0,1},
{1,1,0,0,0,0,1,0,1,0,1},
{1,0,0,0,0,1,0,1,0,1,0},
{1,0,0,0,0,1,0,1,0,1,0},
{0,1,0,1,1,1,0,1,0,1,0},
{0,0,1,0,0,1,0,1,0,1,0},
{0,0,0,1,1,1,0,1,0,1,0},
{0,0,0,0,0,0,1,1,1,0,0},
}, {
{0,0,0,0,0,1,1,0,0,0,0},
{0,0,0,0,1,0,0,1,0,0,0},
{0,0,0,0,1,0,0,0,1,0,0},
{0,0,1,1,1,0,0,0,1,0,0},
{0,1,0,0,1,0,0,0,1,1,0},
{0,1,0,0,0,1,0,1,0,0,1},
{1,0,0,0,0,0,1,0,0,0,1},
{1,0,1,1,1,0,0,1,0,0,1},
{1,1,0,0,0,0,1,0,1,0,1},
{1,0,0,0,0,1,0,1,0,1,0},
{1,0,0,0,0,1,0,1,0,1,0},
{0,1,0,1,1,1,0,1,0,1,0},
{0,0,1,0,0,1,0,1,0,1,0},
{0,0,0,1,1,1,0,1,0,1,0},
{0,0,0,0,0,0,1,1,1,0,0},
}, {
{0,0,0,0,1,1,0,0,0,0,0},
{0,0,0,1,0,0,1,0,0,0,0},
{0,0,0,1,0,0,0,1,1,0,0},
{0,0,1,1,0,0,0,1,0,1,0},
{0,1,0,1,0,0,0,1,0,1,0},
{0,1,0,0,1,0,1,0,0,0,1},
{1,0,0,0,0,1,0,0,0,0,1},
{1,0,1,1,1,0,0,1,0,0,1},
{1,1,0,0,0,0,1,0,1,0,1},
{1,0,0,0,0,1,0,1,0,1,0},
{1,0,0,0,0,1,0,1,0,1,0},
{0,1,0,1,1,1,0,1,0,1,0},
{0,0,1,0,0,1,0,1,0,1,0},
{0,0,0,1,1,1,0,1,0,1,0},
{0,0,0,0,0,0,1,1,1,0,0},
}
};