
-----------------------------------
ziki_23
Mon Nov 08, 2010 1:18 pm

Create Snow in Turing
-----------------------------------
How would i create snow without using the following command:

const NoOfFlakes := 400
var flakeX : array 1 .. NoOfFlakes of int
var flakeY : array 1 .. NoOfFlakes of int

for flake : 1 .. NoOfFlakes
flakeX (flake) := Rand.Int (0, maxx)
flakeY (flake) := Rand.Int (0, maxy)

Please I need it asap

-----------------------------------
SNIPERDUDE
Mon Nov 08, 2010 1:38 pm

RE:Create Snow in Turing
-----------------------------------
May I ask why you cannot use the aforementioned code snippet?
