fixed: fixed imports in game.rs files

This commit is contained in:
Nikita Podvirnyi 2024-08-02 11:51:54 +02:00
parent a17a082434
commit 365e907a4d
No known key found for this signature in database
GPG key ID: 859D416E5142AFF3
6 changed files with 21 additions and 0 deletions

View file

@ -1,6 +1,9 @@
use std::io::{Read, Write}; use std::io::{Read, Write};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};
use std::path::PathBuf; use std::path::PathBuf;
use std::fs::File;
use std::sync::{Arc, Mutex};
use std::sync::atomic::{AtomicUsize, Ordering};
use anime_game_core::honkai::telemetry; use anime_game_core::honkai::telemetry;

View file

@ -1,5 +1,9 @@
use std::io::{Read, Write};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};
use std::path::PathBuf; use std::path::PathBuf;
use std::fs::File;
use std::sync::{Arc, Mutex};
use std::sync::atomic::{AtomicUsize, Ordering};
use anime_game_core::pgr::telemetry; use anime_game_core::pgr::telemetry;

View file

@ -28,7 +28,9 @@ pub mod prelude {
pub use super::launcher::prelude::*; pub use super::launcher::prelude::*;
pub use super::game::prelude::*; pub use super::game::prelude::*;
#[allow(unused_imports)]
pub use super::launcher::prelude::*; pub use super::launcher::prelude::*;
pub use super::game::*; pub use super::game::*;
pub use super::patch::*; pub use super::patch::*;

View file

@ -1,5 +1,9 @@
use std::io::{Read, Write};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};
use std::path::PathBuf; use std::path::PathBuf;
use std::fs::File;
use std::sync::{Arc, Mutex};
use std::sync::atomic::{AtomicUsize, Ordering};
use anime_game_core::star_rail::telemetry; use anime_game_core::star_rail::telemetry;

View file

@ -1,5 +1,9 @@
use std::io::{Read, Write};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};
use std::path::PathBuf; use std::path::PathBuf;
use std::fs::File;
use std::sync::{Arc, Mutex};
use std::sync::atomic::{AtomicUsize, Ordering};
use anime_game_core::wuwa::telemetry; use anime_game_core::wuwa::telemetry;

View file

@ -1,5 +1,9 @@
use std::io::{Read, Write};
use std::process::{Command, Stdio}; use std::process::{Command, Stdio};
use std::path::PathBuf; use std::path::PathBuf;
use std::fs::File;
use std::sync::{Arc, Mutex};
use std::sync::atomic::{AtomicUsize, Ordering};
use anime_game_core::prelude::*; use anime_game_core::prelude::*;
use anime_game_core::zzz::telemetry; use anime_game_core::zzz::telemetry;