mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-12-08 21:32:58 +08:00
19 lines
442 B
TypeScript
19 lines
442 B
TypeScript
import { loading } from '@user/data-base';
|
|
import { fallbackLoad } from './fallback';
|
|
import { createAutotile } from './autotile';
|
|
|
|
export function createMaterial() {
|
|
createAutotile();
|
|
loading.once('loaded', () => {
|
|
fallbackLoad();
|
|
});
|
|
}
|
|
|
|
export * from './autotile';
|
|
export * from './builder';
|
|
export * from './fallback';
|
|
export * from './ins';
|
|
export * from './manager';
|
|
export * from './types';
|
|
export * from './utils';
|