9 lines
197 B
C#
9 lines
197 B
C#
using UnityEngine;
|
|
|
|
namespace CurrencyChanger2.GoofyAhhCustomComponents
|
|
{
|
|
public class Activator : MonoBehaviour
|
|
{
|
|
public void OnDisable() => gameObject.SetActive(true);
|
|
}
|
|
}
|