From 263b82cfa70b78aea7e2006c5abc82358c5c63f9 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 2 Jan 2025 19:28:07 -0800 Subject: [PATCH] common: move into folder --- .gitignore => lib/common/.gitignore | 0 Cargo.lock => lib/common/Cargo.lock | 0 Cargo.toml => lib/common/Cargo.toml | 0 LICENSE-APACHE => lib/common/LICENSE-APACHE | 0 LICENSE-MIT => lib/common/LICENSE-MIT | 0 README.md => lib/common/README.md | 0 {src => lib/common/src}/aabb.rs | 0 {src => lib/common/src}/bvh.rs | 0 {src => lib/common/src}/controls_bitflag.rs | 0 {src => lib/common/src}/gameplay_attributes.rs | 0 {src => lib/common/src}/gameplay_modes.rs | 0 {src => lib/common/src}/gameplay_style.rs | 0 {src => lib/common/src}/instruction.rs | 0 {src => lib/common/src}/integer.rs | 0 {src => lib/common/src}/lib.rs | 0 {src => lib/common/src}/map.rs | 0 {src => lib/common/src}/model.rs | 0 {src => lib/common/src}/mouse.rs | 0 {src => lib/common/src}/physics.rs | 0 {src => lib/common/src}/run.rs | 0 {src => lib/common/src}/timer.rs | 0 {src => lib/common/src}/updatable.rs | 0 22 files changed, 0 insertions(+), 0 deletions(-) rename .gitignore => lib/common/.gitignore (100%) rename Cargo.lock => lib/common/Cargo.lock (100%) rename Cargo.toml => lib/common/Cargo.toml (100%) rename LICENSE-APACHE => lib/common/LICENSE-APACHE (100%) rename LICENSE-MIT => lib/common/LICENSE-MIT (100%) rename README.md => lib/common/README.md (100%) rename {src => lib/common/src}/aabb.rs (100%) rename {src => lib/common/src}/bvh.rs (100%) rename {src => lib/common/src}/controls_bitflag.rs (100%) rename {src => lib/common/src}/gameplay_attributes.rs (100%) rename {src => lib/common/src}/gameplay_modes.rs (100%) rename {src => lib/common/src}/gameplay_style.rs (100%) rename {src => lib/common/src}/instruction.rs (100%) rename {src => lib/common/src}/integer.rs (100%) rename {src => lib/common/src}/lib.rs (100%) rename {src => lib/common/src}/map.rs (100%) rename {src => lib/common/src}/model.rs (100%) rename {src => lib/common/src}/mouse.rs (100%) rename {src => lib/common/src}/physics.rs (100%) rename {src => lib/common/src}/run.rs (100%) rename {src => lib/common/src}/timer.rs (100%) rename {src => lib/common/src}/updatable.rs (100%) diff --git a/.gitignore b/lib/common/.gitignore similarity index 100% rename from .gitignore rename to lib/common/.gitignore diff --git a/Cargo.lock b/lib/common/Cargo.lock similarity index 100% rename from Cargo.lock rename to lib/common/Cargo.lock diff --git a/Cargo.toml b/lib/common/Cargo.toml similarity index 100% rename from Cargo.toml rename to lib/common/Cargo.toml diff --git a/LICENSE-APACHE b/lib/common/LICENSE-APACHE similarity index 100% rename from LICENSE-APACHE rename to lib/common/LICENSE-APACHE diff --git a/LICENSE-MIT b/lib/common/LICENSE-MIT similarity index 100% rename from LICENSE-MIT rename to lib/common/LICENSE-MIT diff --git a/README.md b/lib/common/README.md similarity index 100% rename from README.md rename to lib/common/README.md diff --git a/src/aabb.rs b/lib/common/src/aabb.rs similarity index 100% rename from src/aabb.rs rename to lib/common/src/aabb.rs diff --git a/src/bvh.rs b/lib/common/src/bvh.rs similarity index 100% rename from src/bvh.rs rename to lib/common/src/bvh.rs diff --git a/src/controls_bitflag.rs b/lib/common/src/controls_bitflag.rs similarity index 100% rename from src/controls_bitflag.rs rename to lib/common/src/controls_bitflag.rs diff --git a/src/gameplay_attributes.rs b/lib/common/src/gameplay_attributes.rs similarity index 100% rename from src/gameplay_attributes.rs rename to lib/common/src/gameplay_attributes.rs diff --git a/src/gameplay_modes.rs b/lib/common/src/gameplay_modes.rs similarity index 100% rename from src/gameplay_modes.rs rename to lib/common/src/gameplay_modes.rs diff --git a/src/gameplay_style.rs b/lib/common/src/gameplay_style.rs similarity index 100% rename from src/gameplay_style.rs rename to lib/common/src/gameplay_style.rs diff --git a/src/instruction.rs b/lib/common/src/instruction.rs similarity index 100% rename from src/instruction.rs rename to lib/common/src/instruction.rs diff --git a/src/integer.rs b/lib/common/src/integer.rs similarity index 100% rename from src/integer.rs rename to lib/common/src/integer.rs diff --git a/src/lib.rs b/lib/common/src/lib.rs similarity index 100% rename from src/lib.rs rename to lib/common/src/lib.rs diff --git a/src/map.rs b/lib/common/src/map.rs similarity index 100% rename from src/map.rs rename to lib/common/src/map.rs diff --git a/src/model.rs b/lib/common/src/model.rs similarity index 100% rename from src/model.rs rename to lib/common/src/model.rs diff --git a/src/mouse.rs b/lib/common/src/mouse.rs similarity index 100% rename from src/mouse.rs rename to lib/common/src/mouse.rs diff --git a/src/physics.rs b/lib/common/src/physics.rs similarity index 100% rename from src/physics.rs rename to lib/common/src/physics.rs diff --git a/src/run.rs b/lib/common/src/run.rs similarity index 100% rename from src/run.rs rename to lib/common/src/run.rs diff --git a/src/timer.rs b/lib/common/src/timer.rs similarity index 100% rename from src/timer.rs rename to lib/common/src/timer.rs diff --git a/src/updatable.rs b/lib/common/src/updatable.rs similarity index 100% rename from src/updatable.rs rename to lib/common/src/updatable.rs