mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
12b0085ab6
Added gain param for strip/bus. Getter now returns type single instead of int.
28 lines
461 B
PowerShell
28 lines
461 B
PowerShell
. $PSScriptRoot\base.ps1
|
|
|
|
class Remote {
|
|
[String]$type
|
|
[System.Collections.ArrayList]$button
|
|
[System.Collections.ArrayList]$strip
|
|
[System.Collections.ArrayList]$bus
|
|
|
|
# Constructor
|
|
Remote ([String]$type)
|
|
{
|
|
$this.type = $type
|
|
}
|
|
|
|
[void] Login () {
|
|
Login -TYPE $this.type
|
|
|
|
$this.button = Buttons
|
|
$this.strip = Strips
|
|
$this.bus = Buses
|
|
}
|
|
|
|
[void] Logout () {
|
|
Logout
|
|
}
|
|
}
|
|
|