mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2025-01-18 05:10:48 +00:00
remove constructor annotations
This commit is contained in:
parent
408218ea32
commit
deb3da15ea
@ -11,7 +11,6 @@ class Remote {
|
||||
[Object]$recorder
|
||||
[Object]$profiles
|
||||
|
||||
# Constructor
|
||||
Remote ([String]$kind_id) {
|
||||
$this.kind = GetKind($kind_id)
|
||||
$this.Setup()
|
||||
|
@ -34,7 +34,6 @@ class Bus : IBus {
|
||||
[Object]$mode
|
||||
[Object]$eq
|
||||
|
||||
# Constructor
|
||||
Bus ([int]$index, [Object]$remote) : base ($index, $remote) {
|
||||
AddBoolMembers -PARAMS @('mono', 'mute')
|
||||
AddStringMembers -PARAMS @('label')
|
||||
|
@ -1,7 +1,6 @@
|
||||
. $PSScriptRoot\meta.ps1
|
||||
|
||||
class Special {
|
||||
# Constructor
|
||||
Special () {
|
||||
AddActionMembers -PARAMS @('restart', 'shutdown', 'show')
|
||||
}
|
||||
|
@ -1,7 +1,6 @@
|
||||
class MacroButton {
|
||||
[int32]$index
|
||||
|
||||
# Constructor
|
||||
MacroButton ([int]$index) {
|
||||
$this.index = $index
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
class Recorder {
|
||||
[Object]$remote
|
||||
# Constructor
|
||||
|
||||
Recorder ([Object]$remote) {
|
||||
$this.remote = $remote
|
||||
|
||||
|
@ -29,7 +29,6 @@ class IVban {
|
||||
}
|
||||
|
||||
class Vban : IVban {
|
||||
# Constructor
|
||||
Vban ([int]$index, [string]$direction) : base ($index, $direction) {
|
||||
}
|
||||
|
||||
@ -174,14 +173,12 @@ class Vban : IVban {
|
||||
|
||||
|
||||
class VbanInstream : Vban {
|
||||
# Constructor
|
||||
VbanInstream ([int]$index, [string]$direction) : base ($index, $direction) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
class VbanOutstream : Vban {
|
||||
# Constructor
|
||||
VbanOutstream ([int]$index, [string]$direction) : base ($index, $direction) {
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user