nomai-vr/NomaiVR/ModConfig/IModSettingProvider.cs
2021-10-30 23:23:43 +02:00

26 lines
665 B
C#

using System;
namespace NomaiVR.ModConfig
{
public interface IModSettingProvider
{
event Action OnConfigChange;
bool LeftHandDominant { get; }
bool DebugMode { get; }
bool PreventCursorLock { get; }
bool ShowHelmet { get; }
float VibrationStrength { get; }
bool EnableGesturePrompts { get; }
bool EnableHandLaser { get; }
bool EnableFeetMarker { get; }
bool ControllerOrientedMovement { get; }
bool AutoHideToolbelt { get; }
float ToolbeltHeight { get; }
float HudScale { get; }
float HudOpacity { get; }
void Configure();
}
}