diff options
Diffstat (limited to 'core')
| -rw-r--r-- | core/examples/start_client_console.rs | 4 | ||||
| -rw-r--r-- | core/examples/start_server_console.rs | 6 | ||||
| -rw-r--r-- | core/examples/tetris_multicmd_game.rs | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/core/examples/start_client_console.rs b/core/examples/start_client_console.rs index d138047..8116299 100644 --- a/core/examples/start_client_console.rs +++ b/core/examples/start_client_console.rs @@ -1,6 +1,6 @@ use std::net::{IpAddr, Ipv4Addr}; -use nogamepads_core::pad_data::pad_player_info::nogamepads_player_info::PlayerInfo; -use nogamepads_core::pad_service::client::nogamepads_client::PadClient; +use nogamepads_lib_rs::pad_data::pad_player_info::nogamepads_player_info::PlayerInfo; +use nogamepads_lib_rs::pad_service::client::nogamepads_client::PadClient; const PASSWORD : &str = "password"; diff --git a/core/examples/start_server_console.rs b/core/examples/start_server_console.rs index 4b42849..560a378 100644 --- a/core/examples/start_server_console.rs +++ b/core/examples/start_server_console.rs @@ -1,7 +1,7 @@ -use nogamepads_core::pad_data::game_profile::game_profile::GameProfile; -use nogamepads_core::pad_service::server::nogamepads_server::PadServer; -use nogamepads_core::DEFAULT_PORT; use std::net::{IpAddr, Ipv4Addr}; +use nogamepads_lib_rs::DEFAULT_PORT; +use nogamepads_lib_rs::pad_data::game_profile::game_profile::GameProfile; +use nogamepads_lib_rs::pad_service::server::nogamepads_server::PadServer; fn main() { diff --git a/core/examples/tetris_multicmd_game.rs b/core/examples/tetris_multicmd_game.rs index cf74f49..356a1cf 100644 --- a/core/examples/tetris_multicmd_game.rs +++ b/core/examples/tetris_multicmd_game.rs @@ -1,3 +1,3 @@ fn main() { - + // env!("CARGO") }
\ No newline at end of file |
