using UnityEngine; using UnityEngine.UI; namespace UI.CardSystem { /// /// Simple component representing card back visuals; toggle visibility. /// public class CardBack : MonoBehaviour { [SerializeField] private Image backImage; public void Show() { gameObject.SetActive(true); } public void Hide() { gameObject.SetActive(false); } } }