lol idk #1

Open
Quaternions wants to merge 826 commits from StrafesNET/strafe-project:master into master
6 changed files with 19 additions and 4 deletions
Showing only changes of commit 6f739dba8d - Show all commits

9
Cargo.lock generated
View File

@ -965,6 +965,15 @@ dependencies = [
"hashbrown",
]
[[package]]
name = "integration-testing"
version = "0.1.0"
dependencies = [
"strafesnet_common",
"strafesnet_physics",
"strafesnet_snf",
]
[[package]]
name = "itertools"
version = "0.13.0"

View File

@ -4,6 +4,7 @@ members = [
"engine/physics",
"engine/session",
"engine/settings",
"integration-testing",
"lib/bsp_loader",
"lib/common",
"lib/deferred_loader",

View File

@ -0,0 +1,9 @@
[package]
name = "integration-testing"
version = "0.1.0"
edition = "2021"
[dependencies]
strafesnet_common = { version = "0.5.2", path = "../lib/common", registry = "strafesnet" }
strafesnet_physics = { version = "0.1.0", path = "../engine/physics", registry = "strafesnet" }
strafesnet_snf = { path = "../lib/snf", registry = "strafesnet" }

View File

@ -6,9 +6,6 @@ mod compat_worker;
mod physics_worker;
mod graphics_worker;
#[cfg(test)]
mod tests;
const TITLE:&'static str=concat!("Strafe Client v",env!("CARGO_PKG_VERSION"));
fn main(){

View File

@ -1 +0,0 @@
mod replay;