Terminal.load default.rin

This commit is contained in:
Devine Lu Linvega
2017-05-24 14:48:35 -10:00
parent c36e5cc612
commit 07a959f777
10 changed files with 88 additions and 46 deletions

7
scripts/units/option.js Normal file
View File

@@ -0,0 +1,7 @@
function Option(name)
{
Unit.call(this);
this.name = name.split("=")[0];
this.value = name.split("=")[1];
}