MayHeCome/Assets/ChengHui/Script/Resources_Game.cs

27 lines
462 B
C#
Raw Normal View History

2024-12-18 09:55:34 +00:00
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()
{
}
}