using System; using UnityEngine.UIElements; namespace Goap.Goap.Editor { public class Card : VisualElement { public Card(Action callback) { this.name = "card"; callback(this); } } }