mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 14:29:25 +00:00
21 lines
No EOL
396 B
C#
21 lines
No EOL
396 B
C#
|
|
namespace NAK.DesktopVRIK.Integrations;
|
|
|
|
public static class AMTAddon
|
|
{
|
|
#region Variables
|
|
|
|
public static bool integration_AMT = false;
|
|
|
|
#endregion
|
|
|
|
#region Initialization
|
|
|
|
public static void Initialize()
|
|
{
|
|
integration_AMT = true;
|
|
DesktopVRIK.Logger.Msg("AvatarMotionTweaker was found. Relying on it to handle VRIK locomotion.");
|
|
}
|
|
|
|
#endregion
|
|
} |