GameResources.cs 196 B

123456789101112
  1. using UnityEngine;
  2. using System.Collections;
  3. public class GameResources : MonoBehaviour
  4. {
  5. public static GameResources Instance = null;
  6. void Awake()
  7. {
  8. Instance = this;
  9. }
  10. }