Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- using System;
- using SUISSEngine;
- using UnityEngine;
- using UnityEngine.Events;
- using UnityEngine.UI;
-
- public class ButtonGridTileIcon : GridTileIcon
- {
- public void Init(UnityAction action)
- {
- if (action != null)
- {
- this._button.onClick.AddListener(action);
- }
- }
-
- [SerializeField]
- private Button _button;
- }
|