--- /dev/null
+Tower Defense with Programmable Robots
+--------------------------------------
+
+Unlock things such as:
+ - Sensors for enemies
+ * Distance
+ * Health
+ * etc
+
+ - Movement abilities
+
+ - Weapons / Attacks
+
+
+Programming will be on a SCRATCH like iterface (i.e. no typing the code)
+Connect logic blocks and sensors
+More like FRP, but not because no one knows what that is
gl.clear(gl.COLOR_BUFFER_BIT);
gfx.quad(.{ 0, 0 }, .{ 400, 400 }, color=.{ 1, 0, 1 });
+ gfx.quad(.{ 20, 0 }, .{ 400, 400 }, color=.{ 1, 1, 1 });
gfx.flush();
}