Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed
Diff: Sprite/Background.h
- Revision:
- 16:8a65cccd9685
- Parent:
- 14:6fe667ec957e
- Child:
- 17:67dbdfcdcec2
--- a/Sprite/Background.h Wed May 13 22:05:17 2020 +0000 +++ b/Sprite/Background.h Wed May 13 23:07:05 2020 +0000 @@ -1,17 +1,6 @@ #ifndef "BACKGROUND_H" #define "BACKGROUND_H" - -int bus[4][6] = { - - // bus has a longer width - { 0, 0, 0, 0, 0, 0 }, - { 1, 1, 1, 1, 1, 1 }, - { 1, 1, 1, 1, 1, 1 }, - { 0, 0, 0, 0, 0, 0 }, - -}; - int road[4][4] = { { 1, 0, 1, 0 }, @@ -46,4 +35,20 @@ }; +int safety_lanes_one[4][4] = { + { 0, 0, 0, 1 }, + { 0, 0, 1, 1 }, + { 0, 1, 0, 0 }, + { 1, 0, 0, 1 }, + +}; + +int safety_lane_two[4][4] = { + { 1, 0, 0, 1 }, + { 0, 0, 1, 1 }, + { 0, 1, 0, 0 }, + { 1, 0, 0, 0 }, + +}; + #endif \ No newline at end of file