14 lines
240 B
C#
14 lines
240 B
C#
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class ZibuPiece : MonoBehaviour {
|
|
public string zibuId;
|
|
public Image image;
|
|
[ContextMenu("Awaker")]
|
|
private void Awake()
|
|
{
|
|
image = GetComponent<Image>();
|
|
}
|
|
}
|