mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-10-09 20:41:47 +08:00
19 lines
429 B
TypeScript
19 lines
429 B
TypeScript
import { createDanmaku } from './danmaku';
|
|
import { createFixed } from './fixed';
|
|
import { createSetting, createUI } from './ui';
|
|
|
|
export function createPreset() {
|
|
createDanmaku();
|
|
createFixed();
|
|
createUI();
|
|
createSetting();
|
|
}
|
|
|
|
export * from './ui';
|
|
export * from './settings';
|
|
export * from './danmaku';
|
|
export * from './fixed';
|
|
export * from './keyboard';
|
|
export * from './uiIns';
|
|
export * from './settingIns';
|