14 lines
330 B
C#
14 lines
330 B
C#
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class DuelFishInfo : MonoBehaviour
|
|
{
|
|
public Image icon_fish;
|
|
public Image icon_fish_tag;
|
|
public GameObject myself;
|
|
public GameObject enemy;
|
|
public TextNumHigherAdd text_num_score;
|
|
public TextNumHigherAdd text_num_enermy_score;
|
|
public GameObject root;
|
|
}
|