14 lines
405 B
TypeScript
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';
|