Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. using System.Threading;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5.  
  6. public class RandomNumberTester : MonoBehaviour {
  7.  
  8. Random rand;
  9. int a;
  10.  
  11. void Start()
  12. {
  13. rand = new Random ();
  14. int a = rand.Next;
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement