Update Voicemeeter.psm1

This commit is contained in:
pblivingston 2025-11-27 13:06:18 -05:00
parent d3e9ad2bf4
commit aa2c2a24af

View File

@ -14,6 +14,7 @@
. $PSScriptRoot\recorder.ps1 . $PSScriptRoot\recorder.ps1
. $PSScriptRoot\patch.ps1 . $PSScriptRoot\patch.ps1
. $PSScriptRoot\option.ps1 . $PSScriptRoot\option.ps1
. $PSScriptRoot\fx.ps1
. $PSScriptRoot\profiles.ps1 . $PSScriptRoot\profiles.ps1
class Remote { class Remote {
@ -125,6 +126,7 @@ class RemotePotato : Remote {
[System.Collections.ArrayList]$button [System.Collections.ArrayList]$button
[PSCustomObject]$vban [PSCustomObject]$vban
[Object]$command [Object]$command
[Object]$fx
[Object]$patch [Object]$patch
[Object]$option [Object]$option
[Object]$recorder [Object]$recorder
@ -135,6 +137,7 @@ class RemotePotato : Remote {
$this.button = Make_Buttons $this.button = Make_Buttons
$this.vban = Make_Vban($this) $this.vban = Make_Vban($this)
$this.command = Make_Command($this) $this.command = Make_Command($this)
$this.fx = Make_Fx($this)
$this.patch = Make_Patch($this) $this.patch = Make_Patch($this)
$this.option = Make_Option($this) $this.option = Make_Option($this)
$this.recorder = Make_Recorder($this) $this.recorder = Make_Recorder($this)