Guest User

Untitled

a guest
Jun 21st, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import System.Collections.Generic;
  2.  
  3. var ThoughtList = new List.<Array>();
  4.  
  5.  
  6.  
  7. function Start(){
  8.  
  9. var x = new Array (1, "Hello");
  10. ThoughtList.Add(x);
  11.  
  12. Debug.Log( ThoughtList.Item(1));
  13.  
  14.  
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment