You've already forked taptap2024_GJ_chidouren
15 lines
274 B
C#
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;
|
|
}
|
|
}
|
|
} |