27 lines
452 B
C#
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()
|
|
{
|
|
|
|
}
|
|
|
|
}
|