26 lines
327 B
C#
26 lines
327 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class GBaitPanel : MonoBehaviour
|
|
{
|
|
public GameObject isSelectedGBcontent;
|
|
|
|
public GameObject addButton;
|
|
|
|
public Image capacityProgress;
|
|
|
|
public Text nameText;
|
|
|
|
public Text capacityText;
|
|
|
|
public int indexSlotGB;
|
|
|
|
private void Start()
|
|
{
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
}
|
|
}
|