mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2025-12-11 20:15:30 +01:00
12 lines
418 B
TypeScript
12 lines
418 B
TypeScript
import { OtS_ImporterFactory } from './src/importers/importers';
|
|
import { OtS_Texture } from './src/ots_texture';
|
|
import { OtS_VoxelMesh } from './src/ots_voxel_mesh';
|
|
import { OtS_VoxelMesh_Converter } from './src/ots_voxel_mesh_converter';
|
|
|
|
export default {
|
|
getImporter: OtS_ImporterFactory.GetImporter,
|
|
texture: OtS_Texture,
|
|
|
|
voxelMeshConverter: OtS_VoxelMesh_Converter,
|
|
voxelMesh: OtS_VoxelMesh,
|
|
}; |