/** * 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';