Advertisement
dronkowitz

LevelData.cs

Jul 14th, 2021 (edited)
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4.  
  5. public class LevelData : MonoBehaviour
  6. {
  7.     public static LevelData levelData;
  8.     public int levelNumber = 0;
  9.  
  10.      void Start()
  11.     {
  12.         levelData = this;
  13.     }
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement