using System.Collections; using System.Collections.Generic; using UnityEngine; public class Resources_Game : MonoBehaviour { public static Resources_Game Instance; public int wood; public int stone; public int belief; // Start is called before the first frame update void Start() { Instance = this; wood = 0; stone = 0; } // Update is called once per frame void Update() { } }