mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 21:30:46 +00:00
8a3b8da635
Added $this.Login() into Remote constructor to automatically log user in. Updated test codes accordingly. Boolean params take $true and $false Updated readme to reflect changes.
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.Login()
|
|
}
|
|
|
|
[void] Login () {
|
|
Login -TYPE $this.type
|
|
|
|
$this.button = Buttons
|
|
$this.strip = Strips
|
|
$this.bus = Buses
|
|
}
|
|
|
|
[void] Logout () {
|
|
Logout
|
|
}
|
|
}
|