nexusforever/Source/NexusForever.Shared/GameTable/Model/InputActionEntry.cs
2018-10-09 12:03:35 +13:00

12 lines
306 B
C#

namespace NexusForever.Shared.GameTable.Model
{
public class InputActionEntry
{
public uint Id;
public string EnumName;
public uint LocalizedTextId;
public uint InputActionCategoryId;
public bool CanHaveUpDownState;
public uint DisplayIndex;
}
}