mirror of
https://github.com/LucasDower/ObjToSchematic.git
synced 2025-03-07 14:06:41 +08:00
Removed unused imports
This commit is contained in:
parent
ed6a644b0e
commit
d039258ea5
@ -1,6 +1,6 @@
|
||||
import { UI } from './ui/layout';
|
||||
import { Litematic, Schematic } from './schematic';
|
||||
import { MeshType, Renderer } from './renderer';
|
||||
import { Renderer } from './renderer';
|
||||
import { Mesh } from './mesh';
|
||||
import { ObjImporter } from './importers/obj_importer';
|
||||
import { ASSERT, ColourSpace, CustomError, CustomWarning, LOG, LOG_ERROR, LOG_WARN } from './util';
|
||||
@ -9,7 +9,6 @@ import { remote } from 'electron';
|
||||
import { VoxelMesh, VoxelMeshParams } from './voxel_mesh';
|
||||
import { BlockMesh, BlockMeshParams } from './block_mesh';
|
||||
import { TextureFiltering } from './texture';
|
||||
import { EAppEvent, EventManager } from './event';
|
||||
|
||||
/* eslint-disable */
|
||||
export enum ActionReturnType {
|
||||
|
@ -1,7 +1,6 @@
|
||||
import { AppContext } from './app_context';
|
||||
import { ArcballCamera } from './camera';
|
||||
import { MouseManager } from './mouse';
|
||||
import { LOG } from './util';
|
||||
|
||||
function addEvent(htmlElementID: string, event: string, delegate: (e: any) => void) {
|
||||
document.getElementById(htmlElementID)?.addEventListener(event, delegate);
|
||||
|
Loading…
Reference in New Issue
Block a user