rename files
This commit is contained in:
parent
c1ac2eb1d8
commit
6a8f34098d
@ -8,7 +8,7 @@ edition = "2021"
|
||||
[features]
|
||||
legacy = ["dep:lazy-regex"]
|
||||
#roblox = []
|
||||
source = []
|
||||
#source = []
|
||||
|
||||
[dependencies]
|
||||
lazy-regex = { version = "3.1.0", optional = true }
|
||||
|
12
src/lib.rs
12
src/lib.rs
@ -1,5 +1,7 @@
|
||||
#[cfg(feature="legacy")]
|
||||
mod legacy;
|
||||
mod roblox_legacy;
|
||||
#[cfg(feature="legacy")]
|
||||
mod source_legacy;
|
||||
#[cfg(feature="roblox")]
|
||||
mod roblox;
|
||||
#[cfg(feature="source")]
|
||||
@ -8,8 +10,12 @@ mod source;
|
||||
pub mod texture;
|
||||
|
||||
#[cfg(feature="legacy")]
|
||||
pub fn legacy()->legacy::Loader{
|
||||
legacy::Loader::new()
|
||||
pub fn roblox_legacy()->roblox_legacy::Loader{
|
||||
roblox_legacy::Loader::new()
|
||||
}
|
||||
#[cfg(feature="legacy")]
|
||||
pub fn source_legacy()->source_legacy::Loader{
|
||||
source_legacy::Loader::new()
|
||||
}
|
||||
#[cfg(feature="roblox")]
|
||||
pub fn roblox()->roblox::Loader{
|
||||
|
Loading…
Reference in New Issue
Block a user