The globals unit of of the web version of Invader
by Steven Binns: Y11 Age ~15 converted for SMS by PPS
The Code
unit globals; { Copyright (c) 2011 Steven Binns Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License, as described at http://www.apache.org/licenses/ and http://www.pp4s.co.uk/licenses/ Converted for Smart Mobile Studio by PPS } interface uses w3system; var score, tick : integer; mobs : array [0 .. 20, 0 .. 4] of integer; mobsx : array [0 .. 20] of integer; mobsy : array [0 .. 20] of integer; stop : boolean = false; implementation end.