using UnityEngine; using System.Collections; public class GameResources : MonoBehaviour { public static GameResources Instance = null; void Awake() { Instance = this; } }