Move netcode to module
All checks were successful
CI / Formatting (push) Successful in 1m5s

This commit is contained in:
Michael Bradley 2025-05-25 20:36:49 -04:00
parent c005a4dbb9
commit 9ac45e9249
Signed by: MichaelBradley
SSH key fingerprint: SHA256:o/aaeYtRubILK7OYYjYP12DmU7BsPUhKji1AgaQ+ge4
6 changed files with 210 additions and 161 deletions

6
src/net/mod.rs Normal file
View file

@ -0,0 +1,6 @@
mod plugin;
mod socket;
mod thread;
mod types;
pub use plugin::NetIOPlugin;