Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public int randomColorGenerator(int run) {
- Time seedTime = new Time();
- seedTime.setToNow();
- Random randomColor = new Random(seedTime.toMillis(true)+ run *25);
- int returnColor = 0xFF000000 + randomColor.nextInt(0xFFFFFF);
- return returnColor;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement