FM/Assets/Scripts/FUJIFILM/UI/Item/PetIDCardItem.cs

15 lines
348 B
C#
Raw Normal View History

2025-08-22 22:37:04 +08:00
using UnityEngine;
using ZGame;
namespace HK.FUJIFILM
{
public class PetIDCardItem : A11ozCeramicsMugItem
{
[SerializeField] private Transform tongBu;
protected override void ProductDesgin_GenPhotoEvent(object sender, GameEventArgs e)
{
base.ProductDesgin_GenPhotoEvent(sender, e);
}
}
}