From f1690b62e19e037a55ab968d50b40dc52840de2f Mon Sep 17 00:00:00 2001 From: Aaron Fenyes Date: Mon, 14 Oct 2024 17:08:44 -0700 Subject: [PATCH] Move full interface prototype to top level --- app-proto/{full-interface => }/.gitignore | 0 app-proto/{full-interface => }/Cargo.toml | 0 app-proto/{full-interface => }/index.html | 0 app-proto/{full-interface => }/main.css | 0 app-proto/{full-interface => }/src/add_remove.rs | 0 app-proto/{full-interface => }/src/assembly.rs | 0 app-proto/{full-interface => }/src/display.rs | 0 app-proto/{full-interface => }/src/engine.rs | 0 app-proto/{full-interface => }/src/identity.vert | 0 app-proto/{full-interface => }/src/inversive.frag | 0 app-proto/{full-interface => }/src/main.rs | 0 app-proto/{full-interface => }/src/outline.rs | 0 12 files changed, 0 insertions(+), 0 deletions(-) rename app-proto/{full-interface => }/.gitignore (100%) rename app-proto/{full-interface => }/Cargo.toml (100%) rename app-proto/{full-interface => }/index.html (100%) rename app-proto/{full-interface => }/main.css (100%) rename app-proto/{full-interface => }/src/add_remove.rs (100%) rename app-proto/{full-interface => }/src/assembly.rs (100%) rename app-proto/{full-interface => }/src/display.rs (100%) rename app-proto/{full-interface => }/src/engine.rs (100%) rename app-proto/{full-interface => }/src/identity.vert (100%) rename app-proto/{full-interface => }/src/inversive.frag (100%) rename app-proto/{full-interface => }/src/main.rs (100%) rename app-proto/{full-interface => }/src/outline.rs (100%) diff --git a/app-proto/full-interface/.gitignore b/app-proto/.gitignore similarity index 100% rename from app-proto/full-interface/.gitignore rename to app-proto/.gitignore diff --git a/app-proto/full-interface/Cargo.toml b/app-proto/Cargo.toml similarity index 100% rename from app-proto/full-interface/Cargo.toml rename to app-proto/Cargo.toml diff --git a/app-proto/full-interface/index.html b/app-proto/index.html similarity index 100% rename from app-proto/full-interface/index.html rename to app-proto/index.html diff --git a/app-proto/full-interface/main.css b/app-proto/main.css similarity index 100% rename from app-proto/full-interface/main.css rename to app-proto/main.css diff --git a/app-proto/full-interface/src/add_remove.rs b/app-proto/src/add_remove.rs similarity index 100% rename from app-proto/full-interface/src/add_remove.rs rename to app-proto/src/add_remove.rs diff --git a/app-proto/full-interface/src/assembly.rs b/app-proto/src/assembly.rs similarity index 100% rename from app-proto/full-interface/src/assembly.rs rename to app-proto/src/assembly.rs diff --git a/app-proto/full-interface/src/display.rs b/app-proto/src/display.rs similarity index 100% rename from app-proto/full-interface/src/display.rs rename to app-proto/src/display.rs diff --git a/app-proto/full-interface/src/engine.rs b/app-proto/src/engine.rs similarity index 100% rename from app-proto/full-interface/src/engine.rs rename to app-proto/src/engine.rs diff --git a/app-proto/full-interface/src/identity.vert b/app-proto/src/identity.vert similarity index 100% rename from app-proto/full-interface/src/identity.vert rename to app-proto/src/identity.vert diff --git a/app-proto/full-interface/src/inversive.frag b/app-proto/src/inversive.frag similarity index 100% rename from app-proto/full-interface/src/inversive.frag rename to app-proto/src/inversive.frag diff --git a/app-proto/full-interface/src/main.rs b/app-proto/src/main.rs similarity index 100% rename from app-proto/full-interface/src/main.rs rename to app-proto/src/main.rs diff --git a/app-proto/full-interface/src/outline.rs b/app-proto/src/outline.rs similarity index 100% rename from app-proto/full-interface/src/outline.rs rename to app-proto/src/outline.rs