aboutsummaryrefslogtreecommitdiff
path: root/client/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2025-01-08 11:14:01 +0100
committermetamuffin <metamuffin@disroot.org>2025-01-08 11:14:01 +0100
commitb2145131ccde0a33b9840ac04c8b7d79e733ae12 (patch)
tree217f7bec5e5e8aed99c1af3135a8189b850d9f63 /client/src/lib.rs
parent1247f46149cbb3a21590573fdcef23e920d0addc (diff)
downloadtwclient-b2145131ccde0a33b9840ac04c8b7d79e733ae12.tar
twclient-b2145131ccde0a33b9840ac04c8b7d79e733ae12.tar.bz2
twclient-b2145131ccde0a33b9840ac04c8b7d79e733ae12.tar.zst
reset
Diffstat (limited to 'client/src/lib.rs')
-rw-r--r--client/src/lib.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/client/src/lib.rs b/client/src/lib.rs
deleted file mode 100644
index 3c19df7..0000000
--- a/client/src/lib.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-#![feature(exclusive_range_pattern)]
-
-pub mod client;
-pub mod world;
-
-#[cfg(feature = "gamenet_ddnet_0_6")]
-pub extern crate gamenet_ddnet as gamenet;
-#[cfg(feature = "gamenet_0_5")]
-pub extern crate gamenet_teeworlds_0_5 as gamenet;
-#[cfg(feature = "gamenet_0_6")]
-pub extern crate gamenet_teeworlds_0_6 as gamenet;
-#[cfg(feature = "gamenet_0_7")]
-pub extern crate gamenet_teeworlds_0_7 as gamenet;
-
-
-use std::sync::atomic::AtomicBool;
-
-use lazy_static::lazy_static;
-lazy_static! {
- pub static ref SHOULD_EXIT: AtomicBool = AtomicBool::new(false);
-}