/ Published in: Other
Expand |
Embed | Plain Text
////////////////////////////////////////////////////// //function that helps pick random numbers in a particular range private function randomNumber(lo:Number, hi:Number ):Number { return Math.round((Math.random() * (hi-lo)) + lo); }
You need to login to post a comment.
