2024-12-18 23:39:18 +08:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.UI;
|
|
|
|
public class PetCard : MonoBehaviour
|
|
|
|
{
|
|
|
|
public Text petName;
|
|
|
|
public PetFightingBtn petFightingBtn;
|
2024-12-25 17:33:42 +08:00
|
|
|
public Image petimage;
|
2025-01-06 11:46:12 +08:00
|
|
|
public GameObject Exhibitmusk;
|
2024-12-18 23:39:18 +08:00
|
|
|
void Start()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|