summaryrefslogtreecommitdiff
path: root/GameCode/SetActive.cs
blob: 58563661e3d02f6b86429df69b4b15ec0f8c5110 (plain)
1
2
3
4
5
6
7
8
9
using UnityEngine;

public class SetActive : MonoBehaviour
{
	public void DoSetActive(bool active)
	{
		base.gameObject.SetActive(active);
	}
}