1
0

IMplement STOP

This commit is contained in:
otya128
2017-07-04 20:28:49 +09:00
parent e5e784a9da
commit bb586dbb55
6 changed files with 31 additions and 1 deletions

View File

@@ -2747,3 +2747,11 @@ class CallBG : Code
callback(vm);
}
}
class Stop : Code
{
override void execute(VM vm)
{
vm.petitcomputer.stop();
}
}