Add enum for reporter scope

Some reporters are sprite-specific, such as the costume name/number or
X position of the sprite. Others are global. This enum allows an
extension author to specify the scope of a reporter.
This commit is contained in:
Christopher Willis-Ford 2018-03-06 16:22:18 -08:00
parent 2b985fa083
commit 6a06984678

View file

@ -0,0 +1,6 @@
const ReporterScope = {
GLOBAL: 'global',
SPRITE: 'sprite'
};
module.exports = ReporterScope;