mirror of
https://github.com/smallmain/cocos-enhance-kit.git
synced 2025-04-06 22:51:02 +00:00
10 lines
195 B
JavaScript
Executable File
10 lines
195 B
JavaScript
Executable File
let HTMLImageElement = require('./HTMLImageElement');
|
|
|
|
class Image extends HTMLImageElement {
|
|
constructor(width, height) {
|
|
super(width, height, true)
|
|
}
|
|
}
|
|
|
|
module.exports = Image;
|