mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-04-24 16:13:24 +08:00
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
import { createMota } from './mota';
|
|
import { create } from './create';
|
|
import { patchAll } from '@user/data-fallback';
|
|
import { loading } from '@user/data-base';
|
|
import { Patch } from '@motajs/legacy-common';
|
|
|
|
createMota();
|
|
patchAll();
|
|
create();
|
|
|
|
loading.once('coreInit', () => {
|
|
Patch.patchAll();
|
|
});
|
|
|
|
export * from './mota';
|