/ Published in: ActionScript 3
Expand |
Embed | Plain Text
function randRange( min:Number, max:Number ) : Number { return Math.floor(min +(Math.random() * (max- min))); }
You need to login to post a comment.
forchid on 05/14/09
4 people have marked this snippet as a favorite
function randRange( min:Number, max:Number ) : Number { return Math.floor(min +(Math.random() * (max- min))); }
You need to login to post a comment.