refactor: 规范化代码注释和更新核心模块 - 移除冗余JSDoc注释,统一代码风格

This commit is contained in:
YHH
2025-06-09 13:24:54 +08:00
parent e219fc47ba
commit 4095f1e946
7 changed files with 995 additions and 95 deletions

View File

@@ -1,3 +1,5 @@
import type { IComponent } from '../Types';
/**
* 游戏组件基类
*
@@ -18,7 +20,7 @@
* }
* ```
*/
export abstract class Component {
export abstract class Component implements IComponent {
/**
* 组件ID生成器
*