Files
KateLegend2_proj/assets/scripts/common/index.ts
T
2026-05-06 08:17:32 +08:00

14 lines
405 B
TypeScript

/**
* Common (platform-agnostic) utilities. Anything imported from this barrel
* file must stay free of `cc` dependencies so that it can be unit-tested
* under Jest (see `tests/__mocks__/cc.ts`).
*/
export * from './Constants';
export * from './EventBus';
export * from './ObjectPool';
export * from './TimeMgr';
export * from './StorageMgr';
export * from './Logger';
export * from './PerfMonitor';