com.alicizax.unity.framework/Runtime/ABase/Event/IEventArgs.cs
2025-11-14 11:38:28 +08:00

15 lines
291 B
C#

using System;
using System.Runtime.CompilerServices;
using Unity.IL2CPP.CompilerServices;
namespace AlicizaX
{
public interface IEventArgs { }
public static class EventInitialSize<T> where T : struct, IEventArgs
{
public static int Size = 4; // default
}
}