Advertisement
Guest User

Class Reference

a guest
Jan 31st, 2013
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5.  
  6. public class LevelManager : MonoBehaviour
  7. {
  8.     // code
  9. }
  10.  
  11. public class LevelInformation
  12. {
  13.     static float LowestPoint, HighestPoint, HeightOfTheTree;
  14.     static int CurrentLevelNumber;
  15.        
  16.     public static int GetCurrentLevelNumber ()
  17.     {
  18.         return CurrentLevelNumber;
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement