New folder in codebase
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import * as Transport from './Transport';
|
||||
import * as Mouse from './Mouse';
|
||||
import * as Theme from './Theme';
|
||||
import * as Canvas from './Canvas';
|
||||
import * as Mouse from './DOM/Mouse';
|
||||
import * as Theme from './DOM/Theme';
|
||||
import * as Canvas from './DOM/Canvas';
|
||||
import * as Cache from './Cache';
|
||||
import * as Script from './Script';
|
||||
import * as Drunk from './Drunk';
|
||||
@ -15,7 +15,7 @@ import * as OSC from './OSC';
|
||||
import * as Randomness from './Randomness';
|
||||
import * as Counter from './Counter';
|
||||
import * as Sound from './Sound';
|
||||
import * as Console from './Console';
|
||||
import * as Console from './DOM/Console';
|
||||
import { type SoundEvent } from '../Classes/SoundEvent';
|
||||
import { type SkipEvent } from '../Classes/SkipEvent';
|
||||
import { OscilloscopeConfig } from "../DOM/Visuals/Oscilloscope";
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
import { OscilloscopeConfig } from "../DOM/Visuals/Oscilloscope";
|
||||
import { OscilloscopeConfig } from "../../DOM/Visuals/Oscilloscope";
|
||||
import { ShapeObject, createConicGradient, createLinearGradient, createRadialGradient, drawBackground, drawBox, drawBall, drawBalloid, drawDonut, drawEquilateral, drawImage, drawPie, drawSmiley, drawStar, drawStroke, drawText, drawTriangular } from "../DOM/Visuals/CanvasVisuals";
|
||||
import { Editor } from "../main";
|
||||
import { Editor } from "../../main";
|
||||
|
||||
|
||||
export const loadHydra = (app: Editor) => (): void => {
|
||||
@ -1,4 +1,4 @@
|
||||
import { type UserAPI } from "./API";
|
||||
import { type UserAPI } from "../API";
|
||||
|
||||
export const log = (api: UserAPI) => (message: any) => {
|
||||
/**
|
||||
@ -1,4 +1,4 @@
|
||||
import { Editor } from "../main";
|
||||
import { Editor } from "../../main";
|
||||
|
||||
export const mouseX = (app: Editor) => (): number => {
|
||||
/**
|
||||
@ -1,5 +1,5 @@
|
||||
import { type Editor } from '../main';
|
||||
import colorschemes from "../Editor/colors.json";
|
||||
import { type Editor } from '../../main';
|
||||
import colorschemes from "../../Editor/colors.json";
|
||||
|
||||
export const theme = (app: Editor) => (color_scheme: string): void => {
|
||||
app.readTheme(color_scheme);
|
||||
Reference in New Issue
Block a user