rework getters, setters in higher classes

This commit is contained in:
2023-08-12 03:09:23 +01:00
parent bee52b6541
commit 4e9ff66640
6 changed files with 34 additions and 28 deletions

View File

@@ -75,7 +75,7 @@ class RemoteBasic : Remote {
$this.bus = Make_Buses($this)
$this.button = Make_Buttons
$this.vban = Make_Vban($this)
$this.command = Make_Command
$this.command = Make_Command($this)
}
}
@@ -92,7 +92,7 @@ class RemoteBanana : Remote {
$this.bus = Make_Buses($this)
$this.button = Make_Buttons
$this.vban = Make_Vban($this)
$this.command = Make_Command
$this.command = Make_Command($this)
$this.recorder = Make_Recorder($this)
}
}
@@ -110,7 +110,7 @@ class RemotePotato : Remote {
$this.bus = Make_Buses($this)
$this.button = Make_Buttons
$this.vban = Make_Vban($this)
$this.command = Make_Command
$this.command = Make_Command($this)
$this.recorder = Make_Recorder($this)
}
}