22 lines
388 B
C#
22 lines
388 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
public class PetCard : MonoBehaviour
|
|
{
|
|
public Text petName;
|
|
public PetFightingBtn petFightingBtn;
|
|
public Image petimage;
|
|
public GameObject Exhibitmusk;
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|