Continue source code restructuring

This commit is contained in:
2024-04-14 16:11:58 +02:00
parent 7cef78bc3b
commit a21d6c9a88
68 changed files with 34 additions and 36 deletions

View File

@ -1,10 +1,10 @@
import { Chord, Pitch, Rest as ZRest, Ziffers } from "zifferjs";
import { Editor } from "../main";
import { AbstractEvent } from "./AbstractEvents";
import { SkipEvent } from "./SkipEvent";
import { SoundEvent, SoundParams } from "./SoundEvent";
import { MidiEvent, MidiParams } from "./MidiEvent";
import { RestEvent } from "./RestEvent";
import { AbstractEvent } from "../Classes/AbstractEvents";
import { SkipEvent } from "../Classes/SkipEvent";
import { SoundEvent, SoundParams } from "../Classes/SoundEvent";
import { MidiEvent, MidiParams } from "../Classes/MidiEvent";
import { RestEvent } from "../Classes/RestEvent";
import { arrayOfObjectsToObjectWithArrays, isGenerator } from "../Utils/Generic";
import { TonnetzSpaces } from "zifferjs/src/tonnetz";
import { safeMod } from "zifferjs/src/utils";