mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
94be34b3da
Added CAPI and Login custom error classes. Cleaned up output when error is thrown.
28 lines
482 B
PowerShell
28 lines
482 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
|
|
$this.Setup()
|
|
}
|
|
|
|
[void] Setup () {
|
|
Login -TYPE $this.type
|
|
|
|
$this.button = Buttons
|
|
$this.strip = Strips
|
|
$this.bus = Buses
|
|
}
|
|
|
|
[void] Logout () {
|
|
Logout
|
|
}
|
|
}
|