[adapters] 增加小游戏适配部分源码

This commit is contained in:
SmallMain
2024-10-16 17:12:08 +08:00
parent 887d4a96c9
commit 07bf3b7a96
345 changed files with 38447 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
/* eslint-disable */
import HTMLElement from './HTMLElement'
export default class Body extends HTMLElement {
constructor() {
// 为了性能, 此处不按照标准的DOM层级关系设计
// 将 body 设置为 0级, parent元素为null
super('body', 0)
}
}