Advertisement
Guest User

Untitled

a guest
Aug 25th, 2011
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class NewBehaviourScript : MonoBehaviour
  5. {
  6.     int[] ints = new int[] { 1, 2, 3 };
  7.  
  8.     void Awake()
  9.     {
  10.         for (int n in ints)
  11.         {
  12.             print(n);
  13.         }
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement