27 lines
430 B
Plaintext
27 lines
430 B
Plaintext
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public struct HeroStruct
|
|
{
|
|
public string heroName;
|
|
public Sprite heroSprite;
|
|
public Sprite heroIcon;
|
|
public int heroLevel;
|
|
}
|
|
|
|
public class Hero : MonoBehaviour
|
|
{
|
|
// Start is called before the first frame update
|
|
void Start()
|
|
{
|
|
|
|
}
|
|
|
|
// Update is called once per frame
|
|
void Update()
|
|
{
|
|
|
|
}
|
|
}
|