mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
7 lines
190 B
JavaScript
7 lines
190 B
JavaScript
const FakeBitmapAdapter = require('scratch-svg-renderer').BitmapAdapter;
|
|
|
|
FakeBitmapAdapter.prototype.resize = function (canvas) {
|
|
return canvas;
|
|
};
|
|
|
|
module.exports = FakeBitmapAdapter;
|