MayHeCome/Assets_dst/ChengHui/Script/Resources.cs
2024-12-18 17:55:34 +08:00

27 lines
452 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Resources : MonoBehaviour
{
public static Resources 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()
{
}
}