Commit uncommited stuff I was missing like an idiot
This commit is contained in:
parent
6efd2653a1
commit
9e4ab5f7a3
37 changed files with 3055 additions and 1 deletions
13
Assets/Scripts/ResetStaticDataManager.cs
Normal file
13
Assets/Scripts/ResetStaticDataManager.cs
Normal file
|
@ -0,0 +1,13 @@
|
|||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
|
||||
public class ResetStaticDataManager : MonoBehaviour
|
||||
{
|
||||
private void Awake()
|
||||
{
|
||||
CuttingCounter.ResetStaticData();
|
||||
BaseCounter.ResetStaticData();
|
||||
TrashCounter.ResetStaticData();
|
||||
}
|
||||
}
|
Reference in a new issue