Advertisement
KaelanFrey

Untitled

Nov 25th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class ColorUtils{
  2. static Random randomizer = new Random();
  3. static final int max = 255;
  4. static Color randomColor(){
  5. return new Color(randomizer.nextInt((max-0)+1)+ 0, randomizer.nextInt((max-0)+1)+ 0, randomizer.nextInt((max-0)+1)+ 0);
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement