Initial commit

This commit is contained in:
pan.codes 2024-05-02 19:16:26 +02:00
commit 0afdc1d02f
93 changed files with 2453 additions and 0 deletions

View file

@ -0,0 +1,9 @@
using UnityEngine;
namespace CurrencyChanger2.GoofyAhhCustomComponents
{
public class Activator : MonoBehaviour
{
public void OnDisable() => gameObject.SetActive(true);
}
}