23 lines
451 B
C#
23 lines
451 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
|
|
public class CharacterCardView : MonoBehaviour
|
|
{
|
|
public int characterID;
|
|
public GameObject charactCard;
|
|
public Image characterImage;
|
|
public Image levelIcon;
|
|
public Image occupationIcon;
|
|
|
|
void Start()
|
|
{
|
|
charactCard=gameObject;
|
|
characterImage.sprite = null;
|
|
levelIcon.sprite = null;
|
|
}
|
|
|
|
|
|
}
|