2024-02-13 08:13:04 +00:00
|
|
|
#[cfg(feature="legacy")]
|
|
|
|
mod legacy;
|
|
|
|
#[cfg(feature="roblox")]
|
|
|
|
mod roblox;
|
|
|
|
#[cfg(feature="source")]
|
|
|
|
mod source;
|
|
|
|
|
2024-02-14 03:48:47 +00:00
|
|
|
pub mod texture;
|
2024-02-13 08:13:04 +00:00
|
|
|
|
|
|
|
#[cfg(feature="legacy")]
|
2024-02-14 03:48:47 +00:00
|
|
|
pub fn legacy()->legacy::Loader{
|
|
|
|
legacy::Loader::new()
|
2024-02-13 08:13:04 +00:00
|
|
|
}
|
|
|
|
#[cfg(feature="roblox")]
|
2024-02-14 03:48:47 +00:00
|
|
|
pub fn roblox()->roblox::Loader{
|
|
|
|
roblox::Loader::new()
|
2024-02-13 08:13:04 +00:00
|
|
|
}
|
|
|
|
#[cfg(feature="source")]
|
2024-02-14 03:48:47 +00:00
|
|
|
pub fn source()->source::Loader{
|
|
|
|
source::Loader::new()
|
2024-02-13 08:13:04 +00:00
|
|
|
}
|