using UnityEngine;

public class ResetButtonHandler : GLMonoBehaviour
{
	public GameObject resetable;
	
	public void OnClick()
	{
		(resetable.GetComponent(typeof(IResetable)) as IResetable).Reset();
	}
}
