Exemple #1
0
        public void Select()
        {
            HandsLogic.Select(this);

            foreach (var bh in activeBehaviors)
            {
                if (bh is SelectableCellBehaviour sbh)
                {
                    sbh.Select();
                }
            }
        }
Exemple #2
0
 public virtual void OnLeftClick()
 {
     HandsLogic.InteractWithCell(this);
 }
Exemple #3
0
 public void SetHandler(HandsLogic h) => handler = h;