_xiaofang/xiaofang/Assets/Script/UI/DutyItem.cs

22 lines
372 B
C#
Raw Normal View History

2024-11-29 16:19:12 +08:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class DutyItem : MonoBehaviour
{
public Image dutyImage;
2024-11-30 23:32:17 +08:00
public Text dutyNameText;
2024-11-29 16:19:12 +08:00
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}