Files
taptap2024_GJ_chidouren/Packages/CC-Framework/com.foldcc.icecreamview/Runtime/BindUIEvent.cs

15 lines
274 B
C#
Raw Normal View History

2024-10-16 00:03:41 +08:00
using System;
namespace IcecreamView
{
[AttributeUsage(AttributeTargets.Method)]
public class BindUIEvent : Attribute
{
public int EventCode;
public BindUIEvent (int eventCode)
{
this.EventCode = eventCode;
}
}
}