1
0

Add system variable stubs

This commit is contained in:
otya128
2017-07-09 23:39:07 +09:00
parent be5424a203
commit 98aed4f3dc
2 changed files with 13 additions and 0 deletions

View File

@@ -149,3 +149,11 @@ class CallIndex : SystemVariable
return Value(vm.petitcomputer.callidx);
}
}
class Zero : SystemVariable
{
@property override Value value()
{
return Value(0);
}
}