Move game logic plugin configuration to game-specific plugin
This commit is contained in:
parent
d6c4741582
commit
73ea0d6fd8
10 changed files with 136 additions and 70 deletions
|
@ -1,6 +1,5 @@
|
|||
mod plugin;
|
||||
pub use plugin::NetIOPlugin;
|
||||
mod socket;
|
||||
mod thread;
|
||||
mod types;
|
||||
|
||||
pub use plugin::NetIOPlugin;
|
||||
|
|
|
@ -2,7 +2,7 @@ use std::net::SocketAddr;
|
|||
|
||||
use bevy::prelude::*;
|
||||
|
||||
use crate::game::seed::Seed;
|
||||
use crate::game::prelude::Seed;
|
||||
|
||||
use super::{
|
||||
socket::bind_socket,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue