ELEC2645 (2019/20) / Mbed 2 deprecated ELEC2645_Project_el19tb

Dependencies:   mbed

Revision:
14:6fe667ec957e
Child:
16:8a65cccd9685
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Sprite/Background.h	Wed May 13 17:17:57 2020 +0000
@@ -0,0 +1,49 @@
+#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 },
+    { 0, 0, 0, 0 },
+    { 0, 0, 0, 0 },
+    { 1, 0, 1, 0 },
+
+};
+
+int first_water[4][4] = {
+
+    { 1, 0, 1, 0 },
+    { 0, 0, 0, 1 },
+    { 0, 1, 1, 0 },
+    { 1, 0, 1, 0 },
+};
+
+int second_water[4][4] = {
+    
+    { 0, 1, 0, 1 },
+    { 0, 0, 0, 0 },
+    { 0, 1, 1, 0 },
+    { 0, 1, 0, 1 },  
+    
+};
+
+int third_water[4][4] = {
+    { 1, 0, 0, 0 },
+    { 0, 1, 1, 1 },
+    { 1, 0, 0, 0 },
+    { 0, 1, 0, 1 }, 
+
+};
+
+#endif
\ No newline at end of file