feat: 绘制基础类重构

This commit is contained in:
R524809
2026-04-10 15:06:11 +08:00
parent a911da6181
commit e74fd3709c
17 changed files with 1091 additions and 278 deletions
+13
View File
@@ -1,3 +1,16 @@
/**
* 识字绘制服务工厂
* 根据模板类型创建对应的绘制服务实例
*
* 支持的模板类型:
* - grid:网格模板
* - find:找字模板
*
* 支持的绘制服务:
* - TextDrawService:文字涂色服务
* - FindWordDrawService:找字涂色服务
*/
import TextDrawService from './textDrawService';
import FindWordDrawService from './findWordDrawService';