mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
14 lines
No EOL
485 B
C#
14 lines
No EOL
485 B
C#
using System.Runtime.CompilerServices;
|
|
using UIExpansionKit.API;
|
|
|
|
namespace DesktopVRSwitch;
|
|
public static class UiExtensionsAddon
|
|
{
|
|
[MethodImpl(MethodImplOptions.NoInlining)]
|
|
public static void Init()
|
|
{
|
|
var settings = ExpansionKitApi.GetSettingsCategory(DesktopVRSwitch.SettingsCategory);
|
|
settings.AddSimpleButton("Switch VRMode", SwitchModeButton);
|
|
}
|
|
internal static void SwitchModeButton() => DesktopVRSwitchHelper.Instance.SwitchMode(true);
|
|
} |