15 lines
291 B
C#
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
|
|
}
|
|
|
|
|
|
} |