progress scene builder

This commit is contained in:
IDONTSUDO 2024-06-25 12:43:41 +03:00
parent 0a4eea19c5
commit 50d0c4c12b
64 changed files with 858 additions and 1315 deletions

View file

@ -4,6 +4,7 @@ import { WeightsPresentation } from "../../features/weights/weights_presentation
import { ProjectsPresentation } from "../../features/projects/projects_presentation";
import { extensions } from "../extensions/extensions";
import { Routes } from "../interfaces/router";
import { ScenePresentation } from "../../features/scene/scene_presentation";
extensions();
@ -12,4 +13,5 @@ export const httpRoutes: Routes[] = [
new DatasetsPresentation(),
new BehaviorTreesPresentation(),
new WeightsPresentation(),
new ScenePresentation()
].map((el) => el.call());