Files
taptap2024_GJ_chidouren/Packages/CC-Framework/com.foldcc.icecreamview/Runtime/BindUIEvent.cs
2024-10-16 00:03:41 +08:00

15 lines
274 B
C#

using System;
namespace IcecreamView
{
[AttributeUsage(AttributeTargets.Method)]
public class BindUIEvent : Attribute
{
public int EventCode;
public BindUIEvent (int eventCode)
{
this.EventCode = eventCode;
}
}
}