2022-09-16 00:29:12 +00:00
|
|
|
#[cfg(all(feature = "be-dyn-lib", feature = "use-dyn-lib"))]
|
|
|
|
compile_error!("Can't use both \"be-dyn-lib\" and \"use-dyn-lib\" features at once");
|
|
|
|
|
|
|
|
pub mod action_nodes;
|
|
|
|
pub mod attack;
|
|
|
|
pub mod consts;
|
|
|
|
pub mod data;
|
|
|
|
pub mod util;
|
|
|
|
|
|
|
|
#[cfg(feature = "use-dyn-lib")]
|
2022-09-16 02:34:44 +00:00
|
|
|
use {lazy_static::lazy_static, server_dynlib::LoadedLib, std::sync::Arc, std::sync::Mutex};
|
2022-09-16 00:29:12 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "use-dyn-lib")]
|
|
|
|
lazy_static! {
|
2022-09-16 02:34:44 +00:00
|
|
|
pub static ref LIB: Arc<Mutex<Option<LoadedLib>>> =
|
2022-09-16 00:29:12 +00:00
|
|
|
server_dynlib::init("veloren-server-agent", "veloren-server-agent-dyn", "agent");
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "use-dyn-lib")]
|
|
|
|
pub fn init() { lazy_static::initialize(&LIB); }
|