16 lines
353 B
C#
16 lines
353 B
C#
namespace SepCore.InputModule
|
|
{
|
|
public readonly struct InputBindingSnapshot
|
|
{
|
|
public InputBindingSnapshot(string overridesJson)
|
|
{
|
|
OverridesJson = overridesJson ?? string.Empty;
|
|
}
|
|
|
|
public string OverridesJson { get; }
|
|
|
|
public bool HasOverrides => !string.IsNullOrEmpty(OverridesJson);
|
|
}
|
|
}
|
|
|