using UnityEngine; using UnityEngine.Events; using UnityEngine.UI; namespace ABI.CCK.Scripts.Runtime { [AddComponentMenu("")] public class CCK_TamperCheck : MonoBehaviour { private bool _hasErrorOccured; public void DummyTargetMethod() { // ignored } private void FixedUpdate() { if (_hasErrorOccured) return; Button button = GetComponent