WXMC/.svn/pristine/cf/cf0513c69bd989964177594ef0ff1df6bfec66ed.svn-base
2024-12-04 16:18:46 +08:00

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()
{
}
}