soiz1's picture
Upload 811 files
30c32c8 verified
raw
history blame
430 Bytes
/**
* Indicate the scope for a reporter's value.
* @enum {string}
*/
const ReporterScope = {
/**
* This reporter's value is global and does not depend on context.
*/
GLOBAL: 'global',
/**
* This reporter's value is specific to a particular target/sprite.
* Another target may have a different value or may not even have a value.
*/
TARGET: 'target'
};
module.exports = ReporterScope;