Add file missing from previous commit

This commit is contained in:
Sulka Haro
2020-11-14 11:06:32 +02:00
parent 376c790710
commit 978f20553f
+23
View File
@@ -0,0 +1,23 @@
'use strict';
function init() {
var runtime = {
name: 'runtimestate'
, label: 'Runtime state'
, pluginType: 'fake'
};
runtime.setProperties = function setProperties(sbx) {
sbx.offerProperty('runtimestate', function setProp ( ) {
return {
state: sbx.runtimeState
};
});
};
return runtime;
}
module.exports = init;