mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-26 07:52:50 -05:00
9a2e937271
- Rename video_sensing/lib.js to video_sensing/library.js
13 lines
274 B
JavaScript
13 lines
274 B
JavaScript
/**
|
|
* A debug "index" module exporting VideoMotion and VideoMotionView to debug
|
|
* VideoMotion directly.
|
|
* @file debug.js
|
|
*/
|
|
|
|
const VideoMotion = require('./library');
|
|
const VideoMotionView = require('./view');
|
|
|
|
module.exports = {
|
|
VideoMotion,
|
|
VideoMotionView
|
|
};
|