HumanBreak/src/types/icon.d.ts

15 lines
366 B
TypeScript
Raw Normal View History

2022-11-13 18:02:05 +08:00
/** 和图标相关的函数 */
declare class icons {
/** 获得所有图标类型 */
getIcons(): void;
/** 根据ID获得其类型 */
getClsFromId(id?: string): string;
/** 获得所有图标的ID */
getAllIconIds(): void;
/** 根据图块数字或ID获得所在的tileset和坐标信息 */
getTilesetOffset(id?: string): void;
}