mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-04-24 16:13:24 +08:00
13 lines
313 B
TypeScript
13 lines
313 B
TypeScript
import { Patch } from '@/common/patch';
|
|
import { patchAudio } from './audio';
|
|
import { patchWeather } from './weather';
|
|
|
|
export function patchAll() {
|
|
patchAudio();
|
|
patchWeather();
|
|
const loading = Mota.require('var', 'loading');
|
|
loading.once('coreInit', () => {
|
|
Patch.patchAll();
|
|
});
|
|
}
|