com.alicizax.unity.framework/Runtime/ABase/Structs/InputReference.cs

12 lines
169 B
C#
Raw Normal View History

2025-10-11 15:18:09 +08:00
using System;
namespace AlicizaX
{
[Serializable]
public struct InputReference
{
public string ActionName;
public int BindingIndex;
}
}