12 lines
169 B
C#
12 lines
169 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace AlicizaX
|
||
|
|
{
|
||
|
|
[Serializable]
|
||
|
|
public struct InputReference
|
||
|
|
{
|
||
|
|
public string ActionName;
|
||
|
|
public int BindingIndex;
|
||
|
|
}
|
||
|
|
}
|