Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 21st, 2012  |  syntax: None  |  size: 0.20 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }