add Load method to Command class.

fixes #3
This commit is contained in:
W904yl40JykXAzmA
2022-12-14 19:37:11 +00:00
parent 1d115f4132
commit 5229df81ad
3 changed files with 14 additions and 5 deletions

View File

@@ -53,6 +53,10 @@ class Special {
$this._lock = $this.Setter($this.cmd('lock'), $arg)
}
)
[void] Load ([string]$filename) {
$this.Setter($this.cmd('load'), $filename)
}
}
function Make_Command {