mirror of
https://github.com/Raicuparta/nomai-vr.git
synced 2025-12-11 20:15:08 +01:00
26 lines
665 B
C#
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();
|
|
}
|
|
}
|